-
public interface IThingHomeStatusListenerHome status listener.
-
-
Method Summary
Modifier and Type Method Description abstract voidonDeviceAdded(String devId)Device add successfully. abstract voidonDeviceRemoved(String devId)Device deleted successfully. abstract voidonGroupAdded(long groupId)Group add successfully. abstract voidonGroupRemoved(long groupId)Group deleted successfully. abstract voidonMeshAdded(String meshId)Blue mesh add successfully. -
-
Method Detail
-
onDeviceAdded
abstract void onDeviceAdded(String devId)
Device add successfully.
- Parameters:
devId- The id of the device which added.
-
onDeviceRemoved
abstract void onDeviceRemoved(String devId)
Device deleted successfully.
- Parameters:
devId- The id of the device which removed.
-
onGroupAdded
abstract void onGroupAdded(long groupId)
Group add successfully.
- Parameters:
groupId- The id of the group which added.
-
onGroupRemoved
abstract void onGroupRemoved(long groupId)
Group deleted successfully.
- Parameters:
groupId- The id of the group which removed.
-
onMeshAdded
abstract void onMeshAdded(String meshId)
Blue mesh add successfully.
- Parameters:
meshId- The id of the mesh which added.
-
-
-
-