List of usage examples for java.lang Thread subclass-usage
From source file com.alibaba.otter.shared.common.utils.cmd.StreamCopier.java
/** * A simple thread that copies one stream to another. Useful for copying a process's output/error streams to this * process's output/error streams. */ public class StreamCopier extends Thread {
From source file com.mellanox.jxio.tests.benchmarks.ServerPortalWorker.java
public class ServerPortalWorker extends Thread implements Comparable<ServerPortalWorker>, Worker { private final ServerPortal sp; private final EventQueueHandler eqh; private final MsgPool pool; private final int portal_index;
From source file de.hpi.fgis.hdrs.node.SegmentCompactorThread.java
public class SegmentCompactorThread extends Thread implements SegmentService { static final Log LOG = LogFactory.getLog(SegmentCompactorThread.class); public SegmentCompactorThread(SegmentServer server) { this.server = server;
From source file org.apache.axis2.transport.mail.server.POP3Server.java
public class POP3Server extends Thread { private static final Log log = LogFactory.getLog(POP3Server.class); private Storage st = null; private ServerSocket serverSocket; public POP3Server(Storage st, int port) throws AxisFault {
From source file truelauncher.client.ClientOutputReader.java
public class ClientOutputReader extends Thread { private Process p; private String password; public ClientOutputReader(Process p, String password) {
From source file charva.awt.SyncThread.java
/**
* The purpose of this class it to speed up redrawing of the screen
* after the closing (or opening) of a window and the subsequent opening
* of a new window, by delaying the calling of Toolkit.sync() until
* the new window has had a chance to be drawn.<p>
* <p/>
From source file net.cit.tetrad.schedule.DbStatusDeleteThread.java
public class DbStatusDeleteThread extends Thread { private MonadService monadService; private String deleteLogStartDate = null; private String deleteLogEndDate = null; private Class<?> dbStatus = DbStatus.class;
From source file org.wso2.carbon.automation.test.utils.common.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 net.cit.tetrad.schedule.ServerStatusDeleteThread.java
public class ServerStatusDeleteThread extends Thread { private MonadService monadService; private String deleteLogStartDate = null; private String deleteLogEndDate = null; private Class<?> serverStatus = ServerStatus.class;
From source file org.spoutcraft.client.gui.minimap.MapWidgetRenderer.java
public class MapWidgetRenderer extends Thread { public Queue<Point> renderQueue = new LinkedBlockingQueue<Point>(); public MapWidgetRenderer() { super(); }