public interface DirectionReceiver extends OsidReceiver
The direction receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted directions.
| Modifier and Type | Method and Description |
|---|---|
void |
changedDirections(IdList directionIds)
The callback for notification of updated directions.
|
void |
deletedDirections(IdList directionIds)
The callback for notification of deleted directions.
|
void |
newDirections(IdList directionIds)
The callback for notifications of new directions.
|
down, upvoid newDirections(IdList directionIds)
directionIds - the Ids of the new
Directions mandatory - This method must be implemented. void changedDirections(IdList directionIds)
directionIds - the Ids of the updated
Directions mandatory - This method must be implemented. void deletedDirections(IdList directionIds)
directionIds - the Ids of the deleted
Directions mandatory - This method must be implemented.