public interface DeviceDebugCallback
Modifier and Type | Method and Description |
---|---|
void |
onReceive(byte[] data,
CommunicationType type)
A callback function that get the original data from remote.
|
void |
onSend(byte[] data,
CommunicationType type)
A callback function that shows the send data by local
|
void onReceive(byte[] data, CommunicationType type)
data
- Data which is receive from remote.type
- The currentDate communication type.void onSend(byte[] data, CommunicationType type)
data
- Data which is send by local.type
- The currentDate communication type.