Example usage for java.lang Thread subclass-usage

List of usage examples for java.lang Thread subclass-usage

Introduction

In this page you can find the example usage for java.lang Thread subclass-usage.

Usage

From source file com.agileapes.webexport.concurrent.Worker.java

/**
 * A worker is a thread that is responsible for performing a task
 *
 * @author Mohammad Milad Naseri (m.m.naseri@gmail.com)
 * @since 1.0 (2013/2/23, 16:00)
 */

From source file srvmonitor.thGetAgendas.java

/**
 *
 * @author andresbenitez
 */
public class thGetAgendas extends Thread {
    static globalAreaData gDatos;

From source file com.yanzhenjie.andserver.RequestHandleTask.java

/**
 * <p></p>
 * Created on 2016/6/13.
 *
 * @author Yan Zhenjie.
 */

From source file FILA.Produtor.java

/**
 *
 * @author Ludus
 * produo de 900 a 1200 ms
 */
public class Produtor extends Thread {

From source file gov.nih.nci.caintegrator.application.zip.ZipManager.java

/**
 * @author Prashant Shah - NCICB/SAIC
 *
 * A wrapper class around the ZipFiles Class.  Also provides the zip status value for the AJAX code
 */
@SuppressWarnings("unused")

From source file net.sf.cindy.util.queue.QueueThread.java

/**
 * Queue thread. Action added object in sequence.
 * 
 * @author Roger Chen
 */
public abstract class QueueThread extends Thread {

From source file org.openo.nfvo.emsdriver.collector.alarm.HeartBeat.java

public class HeartBeat extends Thread {
    public Log log = LogFactory.getLog(HeartBeat.class);
    private BufferedOutputStream out = null;
    private Socket socket = null;
    private Msg heartStr;
    private boolean stop = false;

From source file com.predic8.membrane.core.transport.http.TunnelThread.java

public class TunnelThread extends Thread {

    private InputStream in;

    private OutputStream out;

From source file com.microsoft.tfs.core.ws.runtime.transport.HTTPConnectionCanceller.java

/**
 * A thread that watches {@link ActiveHttpMethods} for cancelled
 * {@link TaskMonitor}s, and aborts the first active {@link HttpMethod}
 * associated with them. This is done in a separate thread because the thread
 * using the HttpMethod might be blocked using the socket, and we have no way of
 * doing the abort from the {@link TaskMonitor} process (as we generally wrap a

From source file com.adito.boot.StopContextListenerThread.java

public class StopContextListenerThread extends Thread {

    final static Log log = LogFactory.getLog(StopContextListenerThread.class);

    ContextListener listener;