public interface ProcessReceiver extends OsidReceiver
The process receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Process
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfProcesses(Id notificationId,
IdList processIds)
The callback for notifications of changes to children of process
hierarchy nodes.
|
void |
changedProcesses(Id notificationId,
IdList processIds)
The callback for notification of updated processes.
|
void |
deletedProcesses(Id notificationId,
IdList processIds)
The callback for notification of deleted processes.
|
void |
newProcesses(Id notificationId,
IdList processIds)
The callback for notifications of new processes.
|
down, upvoid newProcesses(Id notificationId, IdList processIds)
notificationId - the notification Id processIds - the Ids of the new Processes
mandatory - This method must be implemented. void changedProcesses(Id notificationId, IdList processIds)
notificationId - the notification Id processIds - the Ids of the updated
Processes mandatory - This method must be implemented. void deletedProcesses(Id notificationId, IdList processIds)
notificationId - the notification Id processIds - the Ids of the deleted
Processes mandatory - This method must be implemented. void changedChildOfProcesses(Id notificationId, IdList processIds)
notificationId - the notification Id processIds - the Ids of the Processes
whose children have changedmandatory - This method must be implemented.