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 |
changedRaceProcessor(Id raceProcessorId)
The callback for notification of updated race processors.
|
void |
deletedRaceProcessor(Id raceProcessorId)
The callback for notification of deleted race processors.
|
void |
newRaceProcessor(Id raceProcessorId)
The callback for notifications of new race processors.
|
down, up
void newRaceProcessor(Id raceProcessorId)
raceProcessorId
- the Id
of the new
RaceProcessor
mandatory
- This method must be implemented. void changedRaceProcessor(Id raceProcessorId)
raceProcessorId
- the Id
of the updated
RaceProcessor
mandatory
- This method must be implemented. void deletedRaceProcessor(Id raceProcessorId)
raceProcessorId
- the Id
of the deleted
RaceProcessor
mandatory
- This method must be implemented.