public interface RaceReceiver extends OsidReceiver
The race receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Race
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedRace(Id raceId)
The callback for notification of updated races.
|
void |
deletedRace(Id raceId)
the callback for notification of deleted races.
|
void |
newRace(Id raceId)
The callback for notifications of new races.
|
down, up
void newRace(Id raceId)
raceId
- the Id
of the new Race
mandatory
- This method must be implemented. void changedRace(Id raceId)
raceId
- the Id
of the updated Race
mandatory
- This method must be implemented. void deletedRace(Id raceId)
raceId
- the Id
of the deleted Race
mandatory
- This method must be implemented.