List of usage examples for java.lang Runnable interface-usage
From source file com.clustercontrol.selfcheck.SelfCheckTask.java
/** * ???? */ public class SelfCheckTask implements Runnable { private static Log m_log = LogFactory.getLog(SelfCheckTask.class);
From source file org.hobbit.core.rabbit.RpcClientBasedEchoClient.java
@Ignore public class RpcClientBasedEchoClient implements Runnable { private RabbitRpcClient client; private Random random; private int numberOfMessages;
From source file org.mule.transport.http.HttpRequestDispatcherWork.java
/** * Dispatches HttpRequest to the appropriate MessageReceiver */ public class HttpRequestDispatcherWork implements Runnable, Expirable { private static Log logger = LogFactory.getLog(HttpRequestDispatcherWork.class);
From source file copter.MPU9150.java
public final class MPU9150 implements Runnable { private static MPU9150 instance; private I2CBus bus; private I2CDevice device; private byte[] accelData, gyroData;
From source file localworker.LocalWorker.java
public class LocalWorker implements Runnable { BlockingQueue<String> jobQ; BlockingQueue<String> respQ; public LocalWorker(BlockingQueue<String> jobQ, BlockingQueue<String> respQ) { this.jobQ = jobQ;
From source file org.openmrs.logic.util.StreamHandler.java
/** * Class that will be used to write log entries when forking a new process on the operating system. * * @see org.openmrs.logic.util.LogicUtil#executeCommand(java.lang.String[], java.io.File) */ class StreamHandler implements Runnable {
From source file websync2.SyncDesign.java
/** * * @author Sridhar */ public class SyncDesign implements Runnable { ArrayList timers;
From source file org.sourcepit.consul.forwarder.AbstractHttpGetCmd.java
public abstract class AbstractHttpGetCmd<Content extends JsonElement> implements Runnable { protected final HttpClient httpClient; protected AbstractHttpGetCmd(HttpClient httpClient) { this.httpClient = httpClient;
From source file net.wessendorf.amqp.RabbitPublishService.java
/** * Very simple service that uses the Spring <code>AmqpTemplate</code> * to submit (bogus) message to a running RabbitMQ broker. */ @Named("rabbitPublishService") public class RabbitPublishService implements Runnable {
From source file com.snaker.WebServer.java
public class WebServer implements Runnable { private static final int DEFAULT_PORT = 9527; private Log logger = LogFactory.getLog(getClass()); private int port = DEFAULT_PORT; private Server server = null;