ec.eval
Class WorkerThread

java.lang.Object
  extended byjava.lang.Thread
      extended byec.eval.WorkerThread
All Implemented Interfaces:
java.lang.Runnable

public class WorkerThread
extends java.lang.Thread

WorkerThread.java A WorkerThread is in charge with receiving the results of evaluations that a certain slave has performed (there is one WorkerThread for each of the current slaves). Each WorkerThread uses separate thread, such that they do not interfere with one another or with the other threads in the system.


Field Summary
 
Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Method Summary
 void run()
          The run method loops and reads back the results of evaluations from the slave associated with this worker thread.
 
Methods inherited from class java.lang.Thread
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getContextClassLoader, getName, getPriority, getThreadGroup, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setName, setPriority, sleep, sleep, start, stop, stop, suspend, toString, yield
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

run

public void run()
The run method loops and reads back the results of evaluations from the slave associated with this worker thread.