public interface JobProcessorReceiver extends OsidReceiver
The job processor receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted job processors.
| Modifier and Type | Method and Description |
|---|---|
void |
changedJobProcessors(IdList jobProcessorIds)
The callback for notification of updated job processors.
|
void |
deletedJobProcessors(IdList jobProcessorIds)
The callback for notification of deleted job processors.
|
void |
newJobProcessors(IdList jobProcessorIds)
The callback for notifications of new job processors.
|
down, upvoid newJobProcessors(IdList jobProcessorIds)
jobProcessorIds - the Ids of the new
JobProcessors mandatory - This method must be implemented. void changedJobProcessors(IdList jobProcessorIds)
jobProcessorIds - the Ids of the updated
JobProcessors mandatory - This method must be implemented. void deletedJobProcessors(IdList jobProcessorIds)
jobProcessorIds - the Ids of the deleted
JobProcessors mandatory - This method must be implemented.