public interface SceneReceiver extends OsidReceiver
The scene receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted scenes.
| Modifier and Type | Method and Description |
|---|---|
void |
changedScenes(Id notificationId,
IdList sceneIds)
The callback for notification of updated scenes.
|
void |
deletedScenes(Id notificationId,
IdList sceneIds)
The callback for notification of deleted scenes.
|
void |
newScenes(Id notificationId,
IdList sceneIds)
The callback for notifications of new scenes.
|
down, upvoid newScenes(Id notificationId, IdList sceneIds)
notificationId - the notification Id sceneIds - the Ids of the new Scenes
mandatory - This method must be implemented. void changedScenes(Id notificationId, IdList sceneIds)
notificationId - the notification Id sceneIds - the Ids of the updated Scenes
mandatory - This method must be implemented.