com.google.android.gms.nearby.connection.Connections.MessageListener |
This interface is deprecated.
Use PayloadCallback
instead.
Listener for messages from a remote endpoint.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This method is deprecated.
Implement
onDisconnected(String) instead.
| |||||||||||
This method is deprecated.
Implement
onPayloadReceived(String, Payload) instead.
|
This method is deprecated.
Implement onDisconnected(String)
instead.
Called when a remote endpoint is disconnected / becomes unreachable.
Parameters | |
---|---|
endpointId |
String :
The identifier for the remote endpoint that disconnected. |
This method is deprecated.
Implement onPayloadReceived(String, Payload)
instead.
Called when a message is received from a remote endpoint.
Parameters | |
---|---|
endpointId |
String :
The identifier for the remote endpoint that sent the message. |
payload |
byte :
The bytes of the message sent by the remote endpoint. This array will not
exceed MAX_RELIABLE_MESSAGE_LEN bytes for reliable messages, or MAX_UNRELIABLE_MESSAGE_LEN for unreliable ones. |
isReliable |
boolean :
True if the message was sent reliably, false otherwise. |