spin.off
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()
void | start(Runnable runnable)- Start a
Runnable asynchronously.
|
start
public void start(Runnable runnable)
Start a Runnable asynchronously.
This method must return immediately without waiting for the
run() method of the Runnable to complete.
runnable - runnable to start