Interface EdgeStateCallback
-
public interface EdgeStateCallback
Edge computing control module event callback interface- Version:
- 1.0.0
- Author:
- wmy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onOperateResult(ServiceCode code, ServiceResult result)
Called back when feedback is received from the servicevoid
onUpdate(PowerState androidPower, PowerState NVIDIAPower)
Called back upon receipt of an edge computing control module status report
-
-
-
Method Detail
-
onUpdate
void onUpdate(PowerState androidPower, PowerState NVIDIAPower)
Called back upon receipt of an edge computing control module status report- Parameters:
androidPower
- Android SBC power supply statusNVIDIAPower
- NVIDIA SBC power supply status
-
onOperateResult
void onOperateResult(ServiceCode code, ServiceResult result)
Called back when feedback is received from the service- Parameters:
code
- Device Service Coderesult
- Feedback result of service delivery
-
-