List of usage examples for java.lang Thread subclass-usage
From source file MyThread.java
class MyThread extends Thread { boolean suspended; MyThread(String threadname, ThreadGroup tgOb) { super(tgOb, threadname); System.out.println("New thread: " + this);
From source file Chopstick.java
class Philosopher extends Thread { private static Random rand = new Random(); private static int counter = 0; private int number = counter++;
From source file Main.java
class Worker extends Thread { @Override public void run() { try { Main.barrier.await(); System.out.println("Let's play.");
From source file com.forexnepal.allbanks.ScrapListener.java
/** * * @author anuz */ public class ScrapListener extends Thread {
From source file MainClass.java
class NumberProducer extends Thread { private DataOutputStream theOutput; private int howMany; public NumberProducer(OutputStream out, int howMany) { theOutput = new DataOutputStream(out);
From source file srvserver.thServerSocket.java
/** * * @author andresbenitez */ public class thServerSocket extends Thread { static srvRutinas gSub;
From source file clientserver.ServerThread.java
/** * * @author Ezhil */ public class ServerThread extends Thread {
From source file org.jembi.rhea.NamespaceExporter.java
/**
* A service thread that periodically exports each namespace as a csv file.
* This export is used by the website.
*
* @author Jembi Health Systems
*/
From source file uk.ac.ebi.intact.util.uniprotExport.CcLineExportProgressThread.java
/**
* TODO comment this!
*
* @author Bruno Aranda (baranda@ebi.ac.uk)
* @version $Id$
* @since <pre>30-Aug-2006</pre>
From source file com.puzzle.module.send.listener.SendPathFileScan.java
/** * * @author Administrator */ public class SendPathFileScan extends Thread {