-
- All Implemented Interfaces:
-
com.thingclips.smart.sdk.api.IDevListener
public abstract class IDevUpdateListener implements IDevListener
The device status change listener. It is specially used for scenarios that need to distinguish between "full"/"partial" dp updates, otherwise please use IDevListener
-
-
Method Summary
Modifier and Type Method Description abstract void
onPartDpUpdate(String devId, String dpStr)
On device data points code (a part of) updated abstract void
onFullDpUpdate(String devId, String dpStr)
On device data points code (full) updated final void
onDpUpdate(String devId, String dpStr)
can't override -
-
Method Detail
-
onPartDpUpdate
abstract void onPartDpUpdate(String devId, String dpStr)
On device data points code (a part of) updated
-
onFullDpUpdate
abstract void onFullDpUpdate(String devId, String dpStr)
On device data points code (full) updated
-
onDpUpdate
@Deprecated() final void onDpUpdate(String devId, String dpStr)
can't override
-
-
-
-