org.apache.batik.util

Interface RunnableQueue.RunHandler

public interface RunnableQueue.RunHandler

This interface must be implemented by an object which wants to be notified of run events.
Method Summary
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, 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 Detail

executionResumed

public void executionResumed(RunnableQueue rq)
Called when the execution of the queue has been resumed.

executionSuspended

public void executionSuspended(RunnableQueue rq)
Called when the execution of the queue has been suspended.

runnableInvoked

public void runnableInvoked(RunnableQueue rq, Runnable r)
Called when the given Runnable has just been invoked and has returned.

runnableStart

public void runnableStart(RunnableQueue rq, Runnable r)
Called just prior to invoking the runnable
Copyright B) 2008 Apache Software Foundation. All Rights Reserved.