spin.off

Interface Starter

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(Runnable runnable)
Start a Runnable asynchronously.

Method Details

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.
Parameters:
runnable - runnable to start