-
- All Implemented Interfaces:
-
com.thingclips.smart.home.sdk.api.IThingHomeRoomInfoChangeListener
public interface IThingHomeRoomInfoChangeExListener implements IThingHomeRoomInfoChangeListener
-
-
Method Summary
Modifier and Type Method Description abstract void
onDeviceRoomInfoChanged(long roomId, String devId, boolean add)
device been added or removed from room abstract void
onGroupRoomInfoChanged(long roomId, long id, boolean add)
group been added or removed from room abstract void
onRoomNameChanged(long roomId, String name)
room name changed abstract void
onRoomOrderChanged()
room order changed -
Methods inherited from class com.thingclips.smart.home.sdk.api.IThingHomeRoomInfoChangeListener
onDeviceRoomInfoUpdate, onGroupRoomInfoUpdate, onRoomAdd, onRoomDelete
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
onDeviceRoomInfoChanged
abstract void onDeviceRoomInfoChanged(long roomId, String devId, boolean add)
device been added or removed from room
- Parameters:
roomId
- room iddevId
- device idadd
- add or not
-
onGroupRoomInfoChanged
abstract void onGroupRoomInfoChanged(long roomId, long id, boolean add)
group been added or removed from room
- Parameters:
roomId
- room idid
- group idadd
- add or not
-
onRoomNameChanged
abstract void onRoomNameChanged(long roomId, String name)
room name changed
- Parameters:
roomId
- room idname
- new room name
-
onRoomOrderChanged
abstract void onRoomOrderChanged()
room order changed
-
-
-
-