-
public interface IThingHomeStatusListener
Home status listener.
-
-
Method Summary
Modifier and Type Method Description abstract void
onDeviceAdded(String devId)
Device add successfully. abstract void
onDeviceRemoved(String devId)
Device deleted successfully. abstract void
onGroupAdded(long groupId)
Group add successfully. abstract void
onGroupRemoved(long groupId)
Group deleted successfully. abstract void
onMeshAdded(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.
-
-
-
-