Interface FcmServiceClient
-
- All Known Implementing Classes:
FcmServiceClientImpl
public interface FcmServiceClientThe FCM service client.
-
-
Field Summary
Fields Modifier and Type Field Description static NamedServiceClientFactory<FcmServiceClient>factory
-
Method Summary
Modifier and Type Method Description FcmSendMessageResultsendMessageTo(String to, FcmSendMessageRequest request)Sends an FCM message to the given target with the given request payload.FcmSendMessageResultsendMessageToRegistrationTokens(Collection<String> registrationTokens, FcmSendMessageRequest request)Sends an FCM message to the given set of registration tokens with the given request payload.FcmSendMessageResultsendMessageToUsers(Collection<String> userIds, FcmSendMessageRequest request)Sends an FCM message to the given set of Stitch users with the given request payload.
-
-
-
Field Detail
-
factory
static final NamedServiceClientFactory<FcmServiceClient> factory
-
-
Method Detail
-
sendMessageTo
FcmSendMessageResult sendMessageTo(String to, FcmSendMessageRequest request)
Sends an FCM message to the given target with the given request payload.- Parameters:
to- the target to send a message to.request- the details of the message.- Returns:
- the result of sending the message.
-
sendMessageToUsers
FcmSendMessageResult sendMessageToUsers(Collection<String> userIds, FcmSendMessageRequest request)
Sends an FCM message to the given set of Stitch users with the given request payload.- Parameters:
userIds- the Stitch users to send a message to.request- the details of the message.- Returns:
- the result of sending the message.
-
sendMessageToRegistrationTokens
FcmSendMessageResult sendMessageToRegistrationTokens(Collection<String> registrationTokens, FcmSendMessageRequest request)
Sends an FCM message to the given set of registration tokens with the given request payload.- Parameters:
registrationTokens- the devices to send a message to.request- the details of the message.- Returns:
- the result of sending the message.
-
-