-
public interface SceneChangeCallbackScene data change monitoring
-
-
Method Summary
Modifier and Type Method Description abstract UnitonDisableScene(String sceneId)When the automation is disabled abstract UnitonEnableScene(String sceneId)When the automation is enabled abstract UnitonDeleteScene(String sceneId)When scene is deleted abstract UnitonAddScene(String sceneId)When the scene is created abstract UnitonUpdateScene(String sceneId)When the scene is updated -
-
Method Detail
-
onDisableScene
abstract Unit onDisableScene(String sceneId)
When the automation is disabled
- Parameters:
sceneId- the id of the scene-automation to which disabled
-
onEnableScene
abstract Unit onEnableScene(String sceneId)
When the automation is enabled
- Parameters:
sceneId- the id of the scene-automation to which enabled
-
onDeleteScene
abstract Unit onDeleteScene(String sceneId)
When scene is deleted
- Parameters:
sceneId- the id of the scene
-
onAddScene
abstract Unit onAddScene(String sceneId)
When the scene is created
- Parameters:
sceneId- the id of the scene
-
onUpdateScene
abstract Unit onUpdateScene(String sceneId)
When the scene is updated
- Parameters:
sceneId- the id of the scene
-
-
-
-