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.
- Version:
- $Id$
-
Method Summary
Modifier and TypeMethodDescriptionvoidCalled when the execution of the queue has been resumed.voidCalled when the execution of the queue has been suspended.voidrunnableInvoked(RunnableQueue rq, Runnable r) Called when the given Runnable has just been invoked and has returned.voidrunnableStart(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.
-