spin.off
Interface Starter
- SimpleStarter
A
Starter
starts
Runnable
s asynchronously -
used by
SpinOffEvaluator
s 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