List of usage examples for java.lang Runnable interface-usage
From source file edu.iu.harp.schdynamic.TaskMonitor.java
public class TaskMonitor<I, O, T extends Task<I, O>> implements Runnable { protected static final Log LOG = LogFactory.getLog(TaskMonitor.class); private final BlockingDeque<Input<I>> inputQueue; private final BlockingQueue<Output<O>> outputQueue;
From source file com.sharneng.net.misc.EchoProcessor.java
class EchoProcessor implements Runnable { private static final Log log = LogFactory.getLog(EchoProcessor.class); private final boolean isCompleted = false; private final Socket socket;
From source file de.zib.gndms.kit.configlet.RunnableConfiglet.java
/**
* This abstract class stores a configuration in a map and provides a method which runs concurrently.
*
* A method of an implementing subclass, which should run concurrently must be either {@code run_()} or a method,
* which is invoked by {@code run_().
* Concurrent execution is done automatically,
From source file nl.sidn.pcap.support.AbstractStoppableThread.java
public abstract class AbstractStoppableThread implements Runnable { public static final Log LOG = LogFactory.getLog(AbstractStoppableThread.class); private boolean keepRunning = true;
From source file vn.vnpay.sms.receiver.SMSCSession.java
/**
* This class represent one client connection to the server starting
* by accepting the connection, authenticating of the client,
* communication and finished by unbinding.
* The <code>SMSCSession</code> object is generated by <code>SMSCListener</code>
* which also sets the session's PDU processor. Session is run in separate
From source file com.gybas.evaluation.quartz.jobs.UserTransactionLookup.java
/**
* Spring bean with a dependency that performs a JNDI lookup for the JTA user transaction. The
* lookup will fail if the current thread is not managed by WebSphere since the thread can't be
* associated with an application in this case.
*
* @author Stefan Gybas
From source file werewolf_off.Server.java
/** * * @author moel */ public class Server implements Runnable {
From source file gov.nih.nci.caintegrator.web.ajax.ImagingDataSourceAjaxRunner.java
/** * Asynchronous thread that runs Imaging Source Loading jobs and updates the status of those jobs. */ public class ImagingDataSourceAjaxRunner implements Runnable { private static final Logger LOGGER = Logger.getLogger(ImagingDataSourceAjaxRunner.class);
From source file jatoo.exec.InputStreamExhauster.java
/**
* A class that will exhaust a provided {@link InputStream}.
*
* @author <a href="http://cristian.sulea.net" rel="author">Cristian Sulea</a>
* @version 1.4, July 25, 2014
*/