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 java.lang.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 Constructor Description RunHandlerAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidexecutionResumed(RunnableQueue rq)Called when the execution of the queue has been resumed.voidexecutionSuspended(RunnableQueue rq)Called when the execution of the queue has been suspended.voidrunnableInvoked(RunnableQueue rq, java.lang.Runnable r)Called when the given Runnable has just been invoked and has returned.voidrunnableStart(RunnableQueue rq, java.lang.Runnable r)Called just prior to invoking the runnable
-
-
-
Method Detail
-
runnableStart
public void runnableStart(RunnableQueue rq, java.lang.Runnable r)
Called just prior to invoking the runnable- Specified by:
runnableStartin interfaceRunnableQueue.RunHandler
-
runnableInvoked
public void runnableInvoked(RunnableQueue rq, java.lang.Runnable r)
Called when the given Runnable has just been invoked and has returned.- Specified by:
runnableInvokedin interfaceRunnableQueue.RunHandler
-
executionSuspended
public void executionSuspended(RunnableQueue rq)
Called when the execution of the queue has been suspended.- Specified by:
executionSuspendedin interfaceRunnableQueue.RunHandler
-
executionResumed
public void executionResumed(RunnableQueue rq)
Called when the execution of the queue has been resumed.- Specified by:
executionResumedin interfaceRunnableQueue.RunHandler
-
-