Package spin.off
Interface Starter
-
- All Known Implementing Classes:
SimpleStarter
public interface Starter
AStarter
startsRunnable
s asynchronously - used bySpinOffEvaluator
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
start(java.lang.Runnable runnable)
Start aRunnable
asynchronously.
-