List of usage examples for java.lang Runnable interface-usage
From source file ru.prbb.activeagent.services.AbstractChecker.java
/** * ? ? ? ? * * @author ruslan */ abstract class AbstractChecker implements Runnable {
From source file com.carolinarollergirls.scoreboard.xml.AutoSaveScoreBoard.java
public class AutoSaveScoreBoard implements Runnable { public AutoSaveScoreBoard(XmlScoreBoard xsB) { xmlScoreBoard = xsB; } public synchronized void start() {
From source file de.hpi.i2b2.girix.ExecutorRunnable.java
/** * Implements thread runnable interface, to delegate the work to a handler */ public class ExecutorRunnable implements Runnable { private static Log log = LogFactory.getLog(ExecutorRunnable.class); private RequestMessageType input = null;
From source file org.eclipse.skalli.services.scheduler.RunnableSchedule.java
/**
* Base class for schedules that can be executed.
* Implementations must implement a suitable {@link Runnable#run() run} method
* according to the following pattern to ensure that the {@link #getLastStarted()}
* and {@link #getLastCompleted()} timestamps are correctly set:
* <pre>
From source file com.company.project.service.TaskExample.java
/** * * @author Romer */ @Component @Scope("prototype")
From source file upgrade.core_0_DOT_2_DOT_8.java
public class core_0_DOT_2_DOT_8 implements Runnable {
@Autowired
RealmRepository realmRepository;
@Autowired
From source file core.sample.pool.PoolWorker.java
/** * @author Murali Kosaraju * This class actually does the work in its own thread. */ public class PoolWorker implements Runnable { /**
From source file net.socket.bio.TimeServerHandler.java
/** * @author Administrator * @version 1.0 * @date 2014214 */ public class TimeServerHandler implements Runnable {
From source file com.netflix.genie.web.tasks.GenieTask.java
/**
* Interface for any task that should run in the Genie system. Will be extended by more specific interfaces.
*
* @author tgianos
* @since 3.0.0
*/
From source file org.duracloud.sync.walker.DirWalker.java
/**
* Handles the walking of a set of directory trees. Each file found in the
* tree is added to the changed file list. Any files found among the listed
* directories will also be added to the changed file list. This is the
* starting point for synchronization.
*