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 |
changedRaces(IdList raceIds)
The callback for notification of updated races.
|
void |
deletedRaces(IdList raceIds)
the callback for notification of deleted races.
|
void |
newRaces(IdList raceIds)
The callback for notifications of new races.
|
down, upvoid newRaces(IdList raceIds)
raceIds - the Ids of the new Races mandatory - This method must be implemented. void changedRaces(IdList raceIds)
raceIds - the Ids of the updated Races
mandatory - This method must be implemented. void deletedRaces(IdList raceIds)
raceIds - the Ids of the deleted Races
mandatory - This method must be implemented.