public interface JobConstrainerReceiver extends OsidReceiver
The job constrainer receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted job constrainers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedJobConstrainers(IdList jobConstrainerIds)
The callback for notification of updated job constrainers.
|
void |
deletedJobConstrainers(IdList jobConstrainerIds)
The callback for notification of deleted job constrainers.
|
void |
newJobConstrainers(IdList jobConstrainerIds)
The callback for notifications of new job constrainers.
|
down, upvoid newJobConstrainers(IdList jobConstrainerIds)
jobConstrainerIds - the Ids of the new
JobConstrainers mandatory - This method must be implemented. void changedJobConstrainers(IdList jobConstrainerIds)
jobConstrainerIds - the Ids of the updated
JobConstrainers mandatory - This method must be implemented. void deletedJobConstrainers(IdList jobConstrainerIds)
jobConstrainerIds - the Ids of the deleted
JobConstrainers mandatory - This method must be implemented.