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 |
changedProcesses(IdList processIds)
The callback for notification of updated process.
|
void |
deletedProcesses(IdList processIds)
The callback for notification of deleted process.
|
void |
newProcesses(IdList processIds)
The callback for notifications of new process.
|
down, upvoid newProcesses(IdList processIds)
processIds - the Ids of the new Processes
mandatory - This method must be implemented. void changedProcesses(IdList processIds)
processIds - the Ids of the updated
Processes mandatory - This method must be implemented. void deletedProcesses(IdList processIds)
processIds - the Ids of the deleted
Processes mandatory - This method must be implemented.