public static interface

Connections.ConnectionResponseCallback

com.google.android.gms.nearby.connection.Connections.ConnectionResponseCallback

This interface is deprecated.
Use ConnectionLifecycleCallback instead.

Class Overview

Callback for responses to connection requests.

Summary

Public Methods
abstract void onConnectionResponse(String remoteEndpointId, Status status, byte[] handshakeData)
Called when a response is received for a connection request.

Public Methods

public abstract void onConnectionResponse (String remoteEndpointId, Status status, byte[] handshakeData)

Called when a response is received for a connection request.

Parameters
remoteEndpointId String: The identifier for the remote endpoint that sent the response.
status Status: The status of the response. Valid values are STATUS_OK, STATUS_CONNECTION_REJECTED, and STATUS_NOT_CONNECTED_TO_ENDPOINT.
handshakeData byte: Bytes of a custom message provided in the connection response (on success). This array will not exceed MAX_RELIABLE_MESSAGE_LEN bytes in length.