public interface RoomReceiver extends OsidReceiver
The room receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted rooms.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRooms(IdList roomIds)
The callback for notifications of updated rooms.
|
void |
deletedRooms(IdList roomIds)
the callback for notification of deleted rooms.
|
void |
newRooms(IdList roomIds)
The callback for notifications of new rooms.
|
down, upvoid newRooms(IdList roomIds)
roomIds - the Ids of the new roomsmandatory - This method must be implemented. void changedRooms(IdList roomIds)
roomIds - the Ids of the updated roomsmandatory - This method must be implemented. void deletedRooms(IdList roomIds)
roomIds - the Ids of the deleted roomsmandatory - This method must be implemented.