public interface RaceProcessorReceiver extends OsidReceiver
The race processor receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted race processors.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRaceProcessors(Id notificationId,
IdList raceProcessorIds)
The callback for notification of updated race processors.
|
void |
deletedRaceProcessors(Id notificationId,
IdList raceProcessorIds)
The callback for notification of deleted race processors.
|
void |
newRaceProcessors(Id notificationId,
IdList raceProcessorIds)
The callback for notifications of new race processors.
|
down, upvoid newRaceProcessors(Id notificationId, IdList raceProcessorIds)
notificationId - the notification IdraceProcessorIds - the Ids of the new
RaceProcessors mandatory - This method must be implemented. void changedRaceProcessors(Id notificationId, IdList raceProcessorIds)
notificationId - the notification IdraceProcessorIds - the Ids of the updated
RaceProcessors mandatory - This method must be implemented. void deletedRaceProcessors(Id notificationId, IdList raceProcessorIds)
notificationId - the notification IdraceProcessorIds - the Ids of the deleted
RaceProcessors mandatory - This method must be implemented.