List of usage examples for java.lang Thread subclass-usage
From source file ca.mcgill.hs.uploader.UploadThread.java
public class UploadThread extends Thread { private final Context mContext; private final UploadInfo mInfo; public UploadThread(final Context context, final UploadInfo info) { mContext = context;
From source file net.sf.jabref.logic.remote.server.RemoteListenerServerThread.java
/** * This thread wrapper is required to be able to interrupt the remote listener while listening on a port. */ public class RemoteListenerServerThread extends Thread { private static final Log LOGGER = LogFactory.getLog(RemoteListenerServerThread.class);
From source file org.apache.synapse.debug.SynapseDebugTCPListener.java
/** * A separate dedicated thread that handles debug commands parsing and processing. Thread spans the * the lifecycle of ESB runtime, if ESB environment is created debug mode. */ public class SynapseDebugTCPListener extends Thread {
From source file screencaptcher.Screen.java
/** * * @author abaza */ public class Screen extends Thread {
From source file com.sslexplorer.boot.StopContextListenerThread.java
public class StopContextListenerThread extends Thread { final static Log log = LogFactory.getLog(StopContextListenerThread.class); ContextListener listener;
From source file net.wastl.webmail.misc.StreamConnector.java
/** * Used to write to a OutputStream in a separate Thread to avoid blocking. * * @author Sebastian Schaffert */ public class StreamConnector extends Thread {
From source file ProgressBarExample.java
class LongRunningOperation extends Thread { private Display display; private ProgressBar progressBar; public LongRunningOperation(Display display, ProgressBar progressBar) {
From source file com.fusesource.forge.jmstest.threading.ReleaseManager.java
/**
* This class is a utility class where resources with cleanup requirements can be registered.
* An instance of this class needs to be registered as a shutdown hook within the JVM. Each
* registered object must implement the <code>Releasable</code> interface. Once the
* shutdown hook is triggered, the <code>release()</code> method of all releasables
* will be executed.
From source file org.jgap.distr.grid.JGAPClient.java
/**
* A client defines work for the grid and sends it to the JGAPServer.
* Use this class to get an idea for your grid client implementation
* or see the samples under package examples.grid to have templates for
* a) fitness computation and
* b) evolution
From source file reconf.client.check.ObserverThread.java
public class ObserverThread extends Thread { private static final MessagesBundle msg = MessagesBundle.getBundle(ObserverThread.class); private CopyOnWriteArrayList<ObservableThread> toWatch = new CopyOnWriteArrayList<ObservableThread>(); public ObserverThread() {