Package org.apache.batik.util
Interface RunnableQueue.RunHandler
- All Known Implementing Classes:
RunnableQueue.RunHandlerAdapter
,UpdateManager.UpdateManagerRunHander
- Enclosing class:
RunnableQueue
public static interface RunnableQueue.RunHandler
This interface must be implemented by an object which wants to
be notified of run events.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Called when the execution of the queue has been resumed.void
Called when the execution of the queue has been suspended.void
runnableInvoked
(RunnableQueue rq, Runnable r) Called when the given Runnable has just been invoked and has returned.void
runnableStart
(RunnableQueue rq, Runnable r) Called just prior to invoking the runnable
-
Method Details
-
runnableStart
Called just prior to invoking the runnable -
runnableInvoked
Called when the given Runnable has just been invoked and has returned. -
executionSuspended
Called when the execution of the queue has been suspended. -
executionResumed
Called when the execution of the queue has been resumed.
-