Package spin.off
Interface Starter
- All Known Implementing Classes:
SimpleStarter
public interface Starter
A
An implementation of this interface could be a sophisticated thread pool ore simply use:
Starter starts Runnables asynchronously -
used by SpinOffEvaluators 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
-
Method Details
-
start
Start aRunnableasynchronously.
This method must return immediately without waiting for therun()method of theRunnableto complete.- Parameters:
runnable- runnable to start
-