List of usage examples for java.lang Thread subclass-usage
From source file edu.stanford.junction.simulator.simThread.java
class simThread extends Thread { private int NumOfMessage; private int NumOfParticipant; private int sessionID; simThread(int NumMsg, int NumP, int id) {
From source file me.ziccard.secureit.async.AudioRecorderTask.java
public class AudioRecorderTask extends Thread { /** * Context used to retrieve shared preferences */ @SuppressWarnings("unused")
From source file com.globalsight.everest.webapp.pagehandler.administration.createJobs.SaveCommentThread.java
public class SaveCommentThread extends Thread { private static final Logger logger = Logger.getLogger(SaveCommentThread.class); private String jobName; private String comment; private String userId;
From source file com.mobius.software.mqtt.performance.controller.Worker.java
public class Worker extends Thread { private static final Log logger = LogFactory.getLog(Worker.class); private boolean running; private LinkedBlockingQueue<TimedTask> queue; private PeriodicQueuedTasks<TimedTask> scheduler;
From source file org.wso2.am.integration.test.utils.monitor.utils.WireMonitor.java
class WireMonitor extends Thread { private Log log = LogFactory.getLog(WireMonitor.class); private int port; private ServerSocket providerSocket; private Socket connection = null; private WireMonitorServer trigger;
From source file org.sonatype.nexus.apachehttpclient.EvictingThread.java
/**
* Low priority daemon thread responsible to evict connection manager pooled connections/
*
* @author cstamas
* @since 2.2
*/
From source file com.tjhruska.spring.jesque.SpringConfiguredJesqueServer.java
/**
* Manages the spring life-cycle for a collection of jesque containers.
*
* @author Timothy Hruska <https://github.com/tjhruska>
*
*/
From source file org.sonatype.nexus.internal.httpclient.EvictingThread.java
/** * Low priority daemon thread responsible to evict connection manager pooled connections/ * * @since 2.2 */ class EvictingThread extends Thread {
From source file de.hpi.fgis.hdrs.node.SegmentServiceThread.java
public abstract class SegmentServiceThread extends Thread implements SegmentService { static final Log LOG = LogFactory.getLog(SegmentServiceThread.class); /** * After this timeout the service thread will get an opportunity
From source file org.wso2.carbon.membership.scheme.kubernetes.tcpforwarder.ClientThread.java
/**
* ClientThread is responsible for starting forwarding between
* the client and the server. It keeps track of the client and
* servers sockets that are both closed on input/output error
* during the forwarding. The forwarding is bidirectional and
* is performed by two ForwardThread instances.