Rpc

public class Rpc extends Object

Handles the communication with FCM server via Google Play services.

Public Constructor Summary

Rpc(Context context)
Constructs object to handle communication with FCM server via Google Play services.

Public Method Summary

Task<Void>
messageHandled(CloudMessage message)
Tells Google Play services that a message was handled.
Task<Bundle>
send(Bundle data)
Send a request to Google Play services.

Inherited Method Summary

Public Constructors

public Rpc (Context context)

Constructs object to handle communication with FCM server via Google Play services.

Public Methods

public Task<Void> messageHandled (CloudMessage message)

Tells Google Play services that a message was handled.

Parameters
message The message that was successfully handled.
Returns
  • A Task that indicates whether the request was successful.

public Task<Bundle> send (Bundle data)

Send a request to Google Play services.

Google Play services will make an HTTP request to the FCM server, passing all string data in the bundle, along with some device and app data to identify and authenticate the app instance making the request.

Parameters
data The request data
Returns
  • A Task with the response to the request or failed Task with an Exception if there was a failure in sending the request to Google Play services