spin.off
Interface Starter
- All Known Implementing Classes:
- SimpleStarter
- public interface Starter
A 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 |
void |
start(java.lang.Runnable runnable)
Start a Runnable asynchronously.
|
start
public void start(java.lang.Runnable runnable)
- Start a
Runnable asynchronously.
This method must return immediately without waiting for the
run() method of the Runnable to complete.
- Parameters:
runnable - runnable to start