Example usage for java.lang Runnable interface-usage

List of usage examples for java.lang Runnable interface-usage

Introduction

In this page you can find the example usage for java.lang Runnable interface-usage.

Usage

From source file org.examproject.task.core.mock.MockWorker.java

/**
 * @author hiroxpepe
 */
public class MockWorker implements Runnable {

    private final Log LOG = LogFactory.getLog(MockWorker.class);

From source file de.mylifesucks.oss.ncsimulator.protocol.SerialComm.java

/**
 *
 * @author fblumenberg
 */
public class SerialComm extends CommunicationBase implements Runnable, SerialPortEventListener {

From source file jlg.jade.example.DatagramConvertor.java

class DatagramConvertor implements Runnable {
    private final BlockingQueue<byte[]> rawQueue;
    private boolean isLogEnabled = false;
    private final Log logger;
    private int numberOfQueueItems;
    private int numberOfReceivedBytes;

From source file cloudworker.WorkerThread.java

public class WorkerThread implements Runnable {
    AmazonSQS sqs;
    String responseQName;
    String task_id;
    long sleepLength;

From source file ome.system.UpgradeCheck.java

/**
 * Contacts a given URL which should be an OME server which will return either
 * an empty String or a URL which points to a needed upgrade.
 * 
 * @author Josh Moore, josh at glencoesoftware.com
 * @since 3.0-Beta2.3

From source file RunMuleClient.java

public class RunMuleClient implements Runnable {
    private static final Log logger = LogFactory.getLog(RunMuleClient.class);
    public static int MAX = 1;
    public static int NUM = 1;
    private static final Queue<MuleMessage> responses = new ConcurrentLinkedQueue<MuleMessage>();
    private static MuleClient client;

From source file br.com.estudogrupo.online.DicionarioOnline01.java

/**
 *
 * @author higor
 */
public class DicionarioOnline01 implements Runnable {
    /*

From source file org.wso2.carbon.suicide.internal.SuicideTask.java

/**
 * TODO: class level comment
 */
public class SuicideTask implements Runnable {
    private static final Log log = LogFactory.getLog(SuicideTask.class);

From source file com.amazonaws.services.iot.demo.danbo.rpi.HTSensor.java

/**
 * This class encapsulates the calls to the java library that reads data from
 * the DHT11 temperature and humidity sensor.
 * 
 * @author Fabio Silva (silfabio@amazon.com)
 */

From source file com.whizzosoftware.hobson.scheduler.ical.ICalAction.java

/**
 * A Runnable implementation for ICalEventTasks that uses reflection to execute actions via an ActionManager.
 *
 * @author Dan Noguerol
 */
public class ICalAction implements Runnable {