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 org.wso2.carbon.appmanager.tests.util.WireMonitor.java

class WireMonitor extends Thread {
    private Log log = LogFactory.getLog(WireMonitor.class);
    private static final int TIMEOUT_VALUE = 60000;
    private int port;
    private ServerSocket providerSocket;
    private Socket connection = null;

From source file com.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 org.wso2.carbon.sample.tfl.bus.BusStream.java

public class BusStream extends Thread {
    private static Log log = LogFactory.getLog(BusStream.class);
    private String url;

    public BusStream(String url) {
        super();

From source file com.nanocrawler.fetcher.IdleConnectionMonitorThread.java

public class IdleConnectionMonitorThread extends Thread {

    private final PoolingClientConnectionManager connMgr;
    private volatile boolean shutdown;

    // Constructor

From source file de.thischwa.pmcms.model.thread.LogGrabber.java

/**
 * Grab the log for the gui.
 * 
 * @author Thilo Schwarz
 */
public class LogGrabber extends Thread {

From source file cz.cas.lib.proarc.common.process.AsyncProcess.java

/**
 * Runs an external process in own thread to handle possible process freeze.
 *
 * @author Jan Pokorsky
 */
public class AsyncProcess extends Thread {

From source file org.stanwood.podcaster.util.StreamGobbler.java

/**
 * Used to swallow the contents of a stream. This is a thread based
 * class, so {@link #start()} should be called to start the thread. {@link #getResult()}
 * can be called to get the contents of the swallowed stream.
 */
public class StreamGobbler extends Thread implements IStreamGobbler {

From source file org.tros.torgo.interpreter.InterpreterThread.java

/**
 * Interpreter Thread Interface
 *
 * @author matta
 */
public abstract class InterpreterThread extends Thread {

From source file org.apache.jmeter.protocol.system.StreamCopier.java

/**
 * Thread that copies a stream in the background; closes both input and output streams.
 * @since 2.8
 */
class StreamCopier extends Thread {

From source file org.apache.jorphan.exec.StreamCopier.java

/**
 * Thread that copies a stream in the background; closes both input and output streams.
 * @since 2.8
 */
class StreamCopier extends Thread {