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 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()
-
Method Summary
-
Method Details
-
start
Start aRunnable
asynchronously.
This method must return immediately without waiting for therun()
method of theRunnable
to complete.- Parameters:
runnable
- runnable to start
-