List of usage examples for java.lang Runnable interface-usage
From source file mangotiger.poker.Analyst.java
/** @author Tom Gagnier */ @SuppressWarnings({ "ClassWithoutToString", "PublicMethodNotExposedInInterface" }) public class Analyst implements Runnable { private static final long ANALYSIS_PERIOD = 7 * 24 * 60 * 60 * 1000; private final EventChannel channel;
From source file WaitComm.java
class WFlagSend implements Runnable { volatile int theValue; boolean isValid; public void run() {
From source file Pipe.java
class Sender implements Runnable { OutputStream out; public Sender(OutputStream out) { this.out = out; }
From source file CookieMIDlet.java
public class CookieMIDlet extends MIDlet implements CommandListener, Runnable { private Display mDisplay; private Form mForm; private String mSession;
From source file copter.GpsDataPoster.java
/** * * @author default */ public class GpsDataPoster implements Runnable {
From source file com.dreamwork.service.SenderService.java
/** * * @author y.lybarskiy */ public class SenderService implements Runnable { private boolean stopped;
From source file de.ailis.oneinstance.OneInstanceServer.java
/** * The server socket which listens for new instances. * * @author Klaus Reimer (k@ailis.de) */ final class OneInstanceServer implements Runnable {
From source file httpscheduler.LateBindingTaskSubmitThread.java
/** * * @author anantoni */ public class LateBindingTaskSubmitThread implements Runnable { HttpResponse response;
From source file ome.services.util.ExecutionThread.java
/**
* Thread which can be started and will appropriately acquire a session, then
* use the {@link Executor} to complete its work.
*
* @author Josh Moore, josh at glencoesoftware.com
* @since 3.0-Beta3
From source file org.slage.framework.scheduler.ScheduledEvent.java
/** * Base class for schedulable Events. * * @author <a href="mailto:Matt@SQ7.org">Matt Holden</a> */ public class ScheduledEvent implements Runnable {