Package spin.off
Interface Starter
-
- All Known Implementing Classes:
SimpleStarter
public interface StarterAStarterstartsRunnables asynchronously - used bySpinOffEvaluators to spin-off non UI computations from the EDT.
An implementation of this interface could be a sophisticated thread pool ore simply use:new Thread(runnable).start()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstart(java.lang.Runnable runnable)Start aRunnableasynchronously.
-