-
public interface IAppDpParserPlugincreate by dongdaqingmibo 2023/8/29 14:49
-
-
Method Summary
Modifier and Type Method Description abstract IDeviceDpParserupdate(DeviceBean deviceBean)update device dp info abstract IDeviceDpParserupdate(GroupBean groupBean)update group dp info abstract Unitremove(String id)remove cached parser abstract UnitremoveAll(List<String> ids)remove cached parsers abstract IDeviceDpParsergetParser(String id)get device(group) dp parse module -
-
Method Detail
-
update
abstract IDeviceDpParser update(DeviceBean deviceBean)
update device dp info
-
update
abstract IDeviceDpParser update(GroupBean groupBean)
update group dp info
-
remove
abstract Unit remove(String id)
remove cached parser
- Parameters:
id- device id DeviceBean.getDevId or group id GroupBean.getId
-
removeAll
abstract Unit removeAll(List<String> ids)
remove cached parsers
-
getParser
abstract IDeviceDpParser getParser(String id)
get device(group) dp parse module
- Parameters:
id- device id DeviceBean.getDevId or group id GroupBean.getId
-
-
-
-