-
public interface MatterActivatorCallback
Created by huguang on 06-13-2022
-
-
Method Summary
Modifier and Type Method Description abstract void
onActivatorSuccess(DeviceBean result)
On data success abstract void
onError(String errorCode, String errorMessage)
On data error abstract void
onDeviceAttestationFailed(long deviceControllerPtr, long devicePtr, int errorCode)
On device attestation failed, will receive this callback,should let the user decide whether to continue the setup -
-
Method Detail
-
onActivatorSuccess
abstract void onActivatorSuccess(DeviceBean result)
On data success
- Parameters:
result
- the result
-
onError
abstract void onError(String errorCode, String errorMessage)
On data error
- Parameters:
errorCode
- error codeerrorMessage
- error message
-
onDeviceAttestationFailed
abstract void onDeviceAttestationFailed(long deviceControllerPtr, long devicePtr, int errorCode)
On device attestation failed, will receive this callback,should let the user decide whether to continue the setup
- Parameters:
deviceControllerPtr
- Matter Controller pointer addressdevicePtr
- current Matter device pointer addresserrorCode
- device attestation error code
-
-
-
-