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 |
changedRaceConstrainer(Id raceConstrainerId)
The callback for notification of updated race constrainers.
|
void |
deletedRaceConstrainer(Id raceConstrainerId)
The callback for notification of deleted race constrainers.
|
void |
newRaceConstrainer(Id raceConstrainerId)
The callback for notifications of new race constrainers.
|
down, up
void newRaceConstrainer(Id raceConstrainerId)
raceConstrainerId
- the Id
of the new
RaceConstrainer
mandatory
- This method must be implemented. void changedRaceConstrainer(Id raceConstrainerId)
raceConstrainerId
- the Id
of the updated
RaceConstrainer
mandatory
- This method must be implemented. void deletedRaceConstrainer(Id raceConstrainerId)
raceConstrainerId
- the Id
of the deleted
RaceConstrainer
mandatory
- This method must be implemented.