public interface JobReceiver extends OsidReceiver
The job receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Job
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedJobs(IdList jobIds)
The callback for notification of updated jobs.
|
void |
deletedJobs(IdList jobIds)
The callback for notification of deleted jobs.
|
void |
newJobs(IdList jobIds)
The callback for notifications of new jobs.
|
down, upvoid newJobs(IdList jobIds)
jobIds - the Ids of the new Jobs mandatory - This method must be implemented. void changedJobs(IdList jobIds)
jobIds - the Ids of the updated Jobs
mandatory - This method must be implemented. void deletedJobs(IdList jobIds)
jobIds - the Ids of the deleted Jobs
mandatory - This method must be implemented.