public interface RaceConstrainerReceiver extends OsidReceiver
The race constrainer receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted race constrainers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRaceConstrainers(Id notificationId,
IdList raceConstrainerIds)
The callback for notification of updated race constrainers.
|
void |
deletedRaceConstrainers(Id notificationId,
IdList raceConstrainerIds)
The callback for notification of deleted race constrainers.
|
void |
newRaceConstrainers(Id notificationId,
IdList raceConstrainerIds)
The callback for notifications of new race constrainers.
|
down, upvoid newRaceConstrainers(Id notificationId, IdList raceConstrainerIds)
notificationId - the notification IdraceConstrainerIds - the Ids of the new
RaceConstrainers mandatory - This method must be implemented. void changedRaceConstrainers(Id notificationId, IdList raceConstrainerIds)
notificationId - the notification IdraceConstrainerIds - the Ids of the updated
RaceConstrainers mandatory - This method must be implemented. void deletedRaceConstrainers(Id notificationId, IdList raceConstrainerIds)
notificationId - the notification IdraceConstrainerIds - the Ids of the deleted
RaceConstrainers mandatory - This method must be implemented.