Package spin.off
Interface Dispatcher
-
- All Known Implementing Classes:
DialogDispatcherFactory.DialogDispatcher
public interface Dispatcher
An dispatcher of AWT events.
Used bySpinOffEvaluator
s to keep the UI reactive while waiting for a spin-off to complete.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
start()
Start dispatching events.void
stop()
Stop dispatching events.
-
-
-
Method Detail
-
start
void start() throws java.lang.Throwable
Start dispatching events.
This method is always called on the EDT. It must not return untilstop()
is called.- Throws:
java.lang.Throwable
- in case of any exceptions while dispatching
-
stop
void stop()
Stop dispatching events.
This method isnot called on the EDT.
-
-