Package spin.off
Interface Dispatcher
-
- All Known Implementing Classes:
DialogDispatcherFactory.DialogDispatcher
public interface DispatcherAn dispatcher of AWT events.
Used bySpinOffEvaluators 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 voidstart()Start dispatching events.voidstop()Stop dispatching events.
-
-
-
Method Detail
-
start
void start() throws java.lang.ThrowableStart 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.
-
-