@@ -31,16 +31,16 @@ interface MatterController : Closeable, InteractionClient {
31
31
fun onStatusUpdate (status : Int )
32
32
33
33
/* * Notifies the completion of pairing. */
34
- fun onPairingComplete (errorCode : Long )
34
+ fun onPairingComplete (errorCode : UInt )
35
35
36
36
/* * Notifies the deletion of a pairing session. */
37
- fun onPairingDeleted (errorCode : Long )
37
+ fun onPairingDeleted (errorCode : UInt )
38
38
39
39
/* * Notifies that the CHIP connection has been closed. */
40
40
fun onNotifyChipConnectionClosed ()
41
41
42
42
/* * Notifies the completion of commissioning. */
43
- fun onCommissioningComplete (nodeId : Long , errorCode : Long )
43
+ fun onCommissioningComplete (nodeId : Long , errorCode : UInt )
44
44
45
45
/* * Notifies the completion of reading commissioning information. */
46
46
fun onReadCommissioningInfo (
@@ -51,7 +51,7 @@ interface MatterController : Closeable, InteractionClient {
51
51
)
52
52
53
53
/* * Notifies the completion of each stage of commissioning. */
54
- fun onCommissioningStatusUpdate (nodeId : Long , stage : String? , errorCode : Long )
54
+ fun onCommissioningStatusUpdate (nodeId : Long , stage : String? , errorCode : UInt )
55
55
56
56
/* * Notifies the listener of an error. */
57
57
fun onError (error : Throwable )
@@ -66,7 +66,7 @@ interface MatterController : Closeable, InteractionClient {
66
66
fun onICDRegistrationInfoRequired ()
67
67
68
68
/* * Notifies when the registration flow for the ICD completes. */
69
- fun onICDRegistrationComplete (errorCode : Long , icdDeviceInfo : ICDDeviceInfo )
69
+ fun onICDRegistrationComplete (errorCode : UInt , icdDeviceInfo : ICDDeviceInfo )
70
70
}
71
71
72
72
/* *
0 commit comments