List of usage examples for java.lang Thread subclass-usage
From source file org.atennert.com.communication.AbstractReceiver.java
/**
* This is the interface for all implemented communicators except the
* Communicator which is the adapter for those.
*
* The run method, which is to be implemented is supposed to wait for incoming
* requests and forward it to the interpret method of the InterpreterManager.
From source file com.symbian.driver.core.processors.HardwarePostProcessor.java
/** * @author EngineeringTools * */ public class HardwarePostProcessor extends Thread implements PostProcessor {
From source file org.structr.util.CopyingStreamReader.java
/** * * */ public class CopyingStreamReader extends Thread {
From source file com.sina.http.IdleConnectionReaper.java
/**
* Daemon thread to periodically check connection pools for idle connections.
* <p>
* Connections sitting around idle in the HTTP connection pool for too long will
* eventually be terminated by the AWS end of the connection, and will go into
* CLOSE_WAIT. If this happens, sockets will sit around in CLOSE_WAIT, still
From source file net.trust.datacollection.thread.DataCollectionThread.java
/** * DataCollectionTimerTask * DataCollectionTimerListener * */ public class DataCollectionThread extends Thread {
From source file org.pentaho.reporting.libraries.designtime.swing.background.WaitDialogMonitorThread.java
/** * Class which will close the wait dialog once the worker thread has completed processing (or exited early due to a * cancel being issued). */ public class WaitDialogMonitorThread extends Thread { private static final Log log = LogFactory.getLog(WaitDialogMonitorThread.class);
From source file tetrad.rrd.TestTotalInfo.java
public class TestTotalInfo extends Thread { /** * @param args * @throws Exception */
From source file Main.java
class Task extends Thread { String name; Clock clock; boolean running = true; Random random = new Random();
From source file com.amazonaws.metricscloudwatch.MetricUploaderThread.java
/** * A internal daemon thread used to upload request metrics to Amazon CloudWatch. */ class MetricUploaderThread extends Thread { private static final String THREAD_NAME = "java-sdk-metric-uploader"; private volatile boolean cancelled;
From source file net.timewalker.ffmq4.utils.async.AsyncTaskProcessorThread.java
/** * AsyncTaskProcessorThread */ public class AsyncTaskProcessorThread extends Thread { private static final Log log = LogFactory.getLog(AsyncTaskProcessorThread.class);