List of usage examples for java.lang Thread subclass-usage
From source file org.gcaldaemon.core.GmailPool.java
/**
* Gmail connection pool.
*
* Created: Jan 03, 2007 12:50:56 PM
*
* @author Andras Berkes
From source file MainClass.java
class LongRunningOperation extends Thread { private Display display; private ProgressBar progressBar; public LongRunningOperation(Display display, ProgressBar progressBar) {
From source file org.madsonic.io.InputStreamReaderThread.java
/**
* Utility class which reads everything from an input stream and optionally logs it.
*
* @see TranscodeInputStream
* @author Sindre Mehus
*/
From source file no.antares.clutil.hitman.process.ProcessOut.java
/** Captures System out and err from a process and routes them to logger info(). * @author tommy skodje */ class ProcessOut extends Thread { private static final Logger logger = Logger.getLogger(ProcessOut.class.getName());
From source file com.alibaba.doris.admin.service.common.node.NodeReloadThread.java
/** * TODO Comment of NodeReloadThread * * @author mian.hem */ public class NodeReloadThread extends Thread {
From source file com.yanzhenjie.andserver.HandleRequestThread.java
/** * Created by Yan Zhenjie on 2016/6/13. */ public class HandleRequestThread extends Thread { private final HttpService mHttpService;
From source file pkg4.pkg0.Engine.java
/** * * @author Harry */ public class Engine extends Thread { int state = 0;
From source file dk.ange.octave.util.ReaderWriterPipeThread.java
/** * A Thread that moves data from a Reader to a Writer * * @author Kim Hansen */ public class ReaderWriterPipeThread extends Thread {
From source file org.eclipse.gyrex.jobs.internal.externalprocess.AsyncLoggingInputStreamReader.java
/** * Reads and input stream asynchronously into a logger. */ public class AsyncLoggingInputStreamReader extends Thread { public static enum Level {
From source file org.dataconservancy.access.connector.ConnectionMonitorThread.java
/**
* Polls the Apache HttpClient {@link ClientConnectionManager}, closing connections that are expired or
* idle longer than 30 seconds.
*
* TODO: make this more configurable.
*/