List of usage examples for java.lang Runnable interface-usage
From source file com.thesoftwareguild.flightmaster.queryExecutor.PQThread.java
/** * * @author yan */ @Component public class PQThread implements Runnable {
From source file org.pwsafe.passwordsafeswt.action.UnlockDbAction.java
/** * Unlocks the password database. * * @author David Mueller */ public class UnlockDbAction extends Action implements Runnable {
From source file org.mcisb.util.io.StreamReader.java
/** * * @author Neil Swainston */ public class StreamReader implements Runnable { /**
From source file Main.java
class FocusGrabber implements Runnable { private JComponent component; public FocusGrabber(JComponent component) { this.component = component; }
From source file monasca.common.middleware.HttpPoolCleaner.java
/**
* A runner to clean the connection pool! There should only be one!
*
* @author liemmn
*
*/
From source file org.commonjava.aprox.ftest.core.fixture.InputTimer.java
public class InputTimer implements Runnable { private final ReluctantInputStream stream; private final long byteDelay; private long startTime; private long endTime;
From source file org.rifidi.emulator.io.comm.ip.udp.UDPCommunicationIncomingMessageHandler.java
/** * This class handles incoming messages. * * @author Matthew Dean */ public class UDPCommunicationIncomingMessageHandler implements Runnable {
From source file org.wso2.carbon.oc.agent.internal.OCAgentReporterTask.java
/** * This class allows to report / publish data periodically */ public class OCAgentReporterTask implements Runnable { private static final Log logger = LogFactory.getLog(OCAgentReporterTask.class);
From source file com.baasbox.db.async.ImportJob.java
public class ImportJob implements Runnable { private String content; private String appcode; byte[] buffer = new byte[2048];
From source file com.amazonaws.services.iot.demo.danbo.rpi.RGBLed.java
/** * This class encapsulates the calls to the python script that handles RGB Led commands. * * @author Fabio Silva (silfabio@amazon.com) */ public class RGBLed implements Runnable {