Class RunnableQueue.RunHandlerAdapter
java.lang.Object
org.apache.batik.util.RunnableQueue.RunHandlerAdapter
- All Implemented Interfaces:
RunnableQueue.RunHandler
- Direct Known Subclasses:
UpdateManager.UpdateManagerRunHander
- Enclosing class:
RunnableQueue
public static class RunnableQueue.RunHandlerAdapter
extends Object
implements RunnableQueue.RunHandler
This is an adapter class that implements the RunHandler interface.
It simply does nothing in response to the calls.
-
Constructor Summary
Constructors -
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
-
Constructor Details
-
RunHandlerAdapter
public RunHandlerAdapter()
-
-
Method Details
-
runnableStart
Called just prior to invoking the runnable- Specified by:
runnableStartin interfaceRunnableQueue.RunHandler
-
runnableInvoked
Called when the given Runnable has just been invoked and has returned.- Specified by:
runnableInvokedin interfaceRunnableQueue.RunHandler
-
executionSuspended
Called when the execution of the queue has been suspended.- Specified by:
executionSuspendedin interfaceRunnableQueue.RunHandler
-
executionResumed
Called when the execution of the queue has been resumed.- Specified by:
executionResumedin interfaceRunnableQueue.RunHandler
-