public interface SpeedZoneReceiver extends OsidReceiver
The speed zone receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted speed zones.
| Modifier and Type | Method and Description |
|---|---|
void |
changedSpeedZones(IdList speedZoneIds)
The callback for notification of updated speed zones.
|
void |
deletedSpeedZones(IdList speedZoneIds)
The callback for notification of deleted speed zones.
|
void |
newSpeedZones(IdList speedZoneIds)
The callback for notifications of new speed zones.
|
down, upvoid newSpeedZones(IdList speedZoneIds)
speedZoneIds - the Ids of the new
SpeedZones mandatory - This method must be implemented. void changedSpeedZones(IdList speedZoneIds)
speedZoneIds - the Ids of the updated
SpeedZones mandatory - This method must be implemented. void deletedSpeedZones(IdList speedZoneIds)
speedZoneIds - the Ids of the deleted
SpeedZones mandatory - This method must be implemented.