Package org.apache.batik.util
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 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
-
Constructor Details
-
RunHandlerAdapter
public RunHandlerAdapter()
-
-
Method Details
-
runnableStart
Called just prior to invoking the runnable- Specified by:
runnableStart
in interfaceRunnableQueue.RunHandler
-
runnableInvoked
Called when the given Runnable has just been invoked and has returned.- Specified by:
runnableInvoked
in interfaceRunnableQueue.RunHandler
-
executionSuspended
Called when the execution of the queue has been suspended.- Specified by:
executionSuspended
in interfaceRunnableQueue.RunHandler
-
executionResumed
Called when the execution of the queue has been resumed.- Specified by:
executionResumed
in interfaceRunnableQueue.RunHandler
-