List of usage examples for java.lang Runnable interface-usage
From source file AudioMIDlet.java
public class AudioMIDlet extends MIDlet implements CommandListener, Runnable { private Display mDisplay; private List mMainScreen; public void startApp() { mDisplay = Display.getDisplay(this);
From source file producer.consumer.Producer.java
/** * * @author cojoj */ public class Producer implements Runnable {
From source file com.topekalabs.bigmachine.lib.testutils.SimpleContinuationRunnable.java
/** * * @author Topeka Labs */ public class SimpleContinuationRunnable implements Runnable, Serializable { public static final Integer FIRST_VALUE = 5;
From source file Main.java
class MyThread implements Runnable {
Semaphore sem;
String msg;
MyThread(Semaphore s, String m) {
sem = s;
From source file Main.java
class SyncOutput implements Runnable {
Semaphore sem;
String msg;
SyncOutput(Semaphore s, String m) {
sem = s;
From source file Hypnosis1.java
public class Hypnosis1 extends JComponent implements Runnable { private int[] coordinates; private int[] deltas; private Paint paint;
From source file com.ebay.erl.mobius.core.mapred.CounterUpdateThread.java
/**
* Responsible for updating the Hadoop counters
* in background.
*
* <p>
* This product is licensed under the Apache License, Version 2.0,
From source file BarDemo.java
class MyThread implements Runnable {
CyclicBarrier cbar;
String name;
MyThread(CyclicBarrier c, String n) {
From source file MyResource.java
class MyThread implements Runnable { MyResource myResource; MyThread(String name, MyResource so) { myResource = so; new Thread(this, name).start();
From source file com.eu.evaluation.server.eva.Thread1.java
/** * * @author dell */ public class Thread1 implements Runnable {