List of usage examples for java.lang Thread subclass-usage
From source file CachedThread.java
class CachedThread extends Thread { Runnable runner = null; boolean alive = true; ThreadCache cache = null; CachedThread next = null; CachedThread prev = null;
From source file com.redhat.poc.jdg.bankofchina.function.TestCase411RemoteMultiThreads.java
/**
* ? (client-server mode, 1JDG)
* ?/opt/jbshome/data/userinfo/csv
* ??,?PutCache
*
* @author maping
From source file org.apache.hadoop.dynamodb.preader.ReadWorker.java
public class ReadWorker extends Thread { private static final int SLEEP_TIME_MS = 80; private static final int SLEEP_JITTER_MS = 40; private static final Log log = LogFactory.getLog(ReadWorker.class);
From source file cn.ctyun.amazonaws.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 com.sinacloud.scs.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 com.sec.ose.osi.thread.job.init.AfterLoginTaskThread.java
/** * AfterLoginTaskThread * @author sjh.yoo, suhyun47.kim * */ public class AfterLoginTaskThread extends Thread {
From source file Server.Player.java
/** * * @author malar */ public class Player extends Thread {
From source file com.sec.ose.osi.thread.job.init.BeforeLoginTaskThread.java
/** * BeforeLoginTaskThread * @author sjh.yoo, hankido.lee, suhyun47.kim * */ public class BeforeLoginTaskThread extends Thread {
From source file com.sina.cloudstorage.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 org.wso2.carbon.appfactory.core.queue.QueueProcessor.java
/**
* Read the elements from the queue and execute the element are done by the
* QueueProcessor. Process running until it has some interruption or state
* change in isProcessStopped=true. If isAutoRestart=true in executionEngine,
* then
* QueueProcessor will be restarted if it is crashed.