Uses of Class
us.ihmc.utilities.thread.InterruptableWorker.STATE

Packages that use InterruptableWorker.STATE
us.ihmc.utilities.thread   
 

Uses of InterruptableWorker.STATE in us.ihmc.utilities.thread
 

Methods in us.ihmc.utilities.thread that return InterruptableWorker.STATE
abstract  InterruptableWorker.STATE InterruptableWorker.doWork()
          This method needs to be overridden and should perform the actual work It should periodically chech the isInterrupted method to know if it should stop.
 InterruptableWorker.STATE DebugInterruptableWorker.doWork()
           
 InterruptableWorker.STATE InterruptableWorker.getCurrentState()
          This method returns the current state
static InterruptableWorker.STATE InterruptableWorker.STATE.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static InterruptableWorker.STATE[] InterruptableWorker.STATE.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in us.ihmc.utilities.thread with parameters of type InterruptableWorker.STATE
 void InterruptableWorker.setCurrentState(InterruptableWorker.STATE state)