Page Summary
-
Direct use of the play-services-cloud-messaging SDK is not supported; instead, you should use the Firebase Cloud Messaging SDK.
-
The Rpc class handles communication with the FCM server via Google Play services.
-
Key methods include sending requests to Google Play services, getting proxied notification data, telling Google Play services a message was handled, and setting whether to retain proxied notification data.
-
An Rpc object is constructed with an Android Context to handle communication.
Handles the communication with FCM server via Google Play services.
Public Constructor Summary
Public Method Summary
| Task< CloudMessage > | |
| Task< Void > | |
| Task< Bundle > | |
| Task< Void > | setRetainProxiedNotifications
(boolean retain)
Sets whether Google Play services should retain data for notifications that are
proxied so that the app can retrieve the data later.
|
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< CloudMessage > getProxiedNotificationData ()
Gets data for a notification that was proxied, if it exists.
Returns
- A
Taskwith the message data of the proxied notification, a Task with a nullCloudMessageif there is no proxied notification data available, or a failed Task if the data could not be retrieved.
public Task< Void > messageHandled ( CloudMessage message)
Tells Google Play services that a message was handled.
Parameters
Returns
- A
Taskthat 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
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
public Task< Void > setRetainProxiedNotifications (boolean retain)
Sets whether Google Play services should retain data for notifications that are proxied so that the app can retrieve the data later.
Parameters
Returns
- A
Taskthat indicates whether the request was successful.

