List of usage examples for java.lang Thread subclass-usage
From source file org.wso2.carbon.tfl.realtime.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 rattingadvisor.VersionThread.java
/** * * @author Anibal */ public class VersionThread extends Thread {
From source file org.ow2.chameleon.fuchsia.push.base.subscriber.tool.HttpClientCallAsynchronous.java
public class HttpClientCallAsynchronous extends Thread { private static final Logger LOGGER = LoggerFactory.getLogger(HttpClientCallAsynchronous.class); private final HttpClient httpClient; private final HttpContext context;
From source file com.amazonaws.client.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.appmanager.integration.ui.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.gameminers.mav.render.IconRenderer.java
public class IconRenderer extends Thread { public static final int SIZE = 64; private Pbuffer pbuffer; private volatile boolean run = true; private float[] previousRGB = null;
From source file com.github.lpezet.antiope.metrics.aws.MetricsUploaderThread.java
/** * A internal daemon thread used to upload request metrics to Amazon CloudWatch. */ class MetricsUploaderThread extends Thread { private static final String THREAD_NAME = "java-sdk-metric-uploader"; private volatile boolean mCancelled;
From source file com.redhat.poc.jdg.bankofchina.function.TestCase412RemoteMultiThreads.java
/**
* ? (client-server mode, 2JDG,??)
* ?/opt/jbshome/data/userinfo/csv
* PutCache
*
* @author maping
From source file com.adito.agent.client.TXRXMonitor.java
/** * Thread that monitors traffic between the agent and Adito * and updates the current {@link AgentClientGUI} to show when * data is received or sent. */ public class TXRXMonitor extends Thread {
From source file motej.OutgoingThread.java
/** * * <p> * @author <a href="mailto:vfritzsch@users.sourceforge.net">Volker Fritzsch</a> */ class OutgoingThread extends Thread {