Package spin.off

Interface Starter

All Known Implementing Classes:
SimpleStarter

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

    Modifier and Type
    Method
    Description
    void
    start(Runnable runnable)
    Start a Runnable asynchronously.
  • Method Details

    • start

      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