frysk.proc
Interface ProcBlockObserver

All Superinterfaces:
Observer
All Known Implementing Classes:
CoredumpAction, StacktraceAction

public interface ProcBlockObserver
extends Observer

An interface perform a one time check of all tasks while each is in the blocked state.


Method Summary
 void allExistingTasksCompleted()
          Called when all the tasks have been handled.
 void existingTask(Task task)
          Called to deliver a list of existing tasks to the client.
 void taskAddFailed(Object task, Throwable w)
          Called when attempting to bind to a specific task fails.
 
Methods inherited from interface frysk.proc.Observer
addedTo, addFailed, deletedFrom
 

Method Detail

existingTask

void existingTask(Task task)
Called to deliver a list of existing tasks to the client.


allExistingTasksCompleted

void allExistingTasksCompleted()
Called when all the tasks have been handled.


taskAddFailed

void taskAddFailed(Object task,
                   Throwable w)
Called when attempting to bind to a specific task fails.