Interface RegistrationIdHandler
Deprecated.
Firebase Cloud Messaging利用時、
レスポンスにてregistrationIdのリフレッシュ、削除が通知された場合に処理を行う場合のハンドラです。
RegistrationIdHandlerは、設定ファイルのFCMPushNotificationServiceに設定します。
-
Method Summary
Modifier and TypeMethodDescriptionvoid
refreshRegistrationId
(String currentId, String newId) Deprecated.currentIdで示される登録トークンの正規の登録トークンをnewIdで通知します。void
removeRegistrationId
(String registrationId) Deprecated.registrationIdで指定される登録トークンは無効であることを通知します。 ユーザーの端末から、アプリケーションがアンインストールされた場合などに、通知されます。
-
Method Details
-
refreshRegistrationId
Deprecated.currentIdで示される登録トークンの正規の登録トークンをnewIdで通知します。- Parameters:
currentId
- 現在の登録トークンnewId
- 正規の新規の登録トークン
-
removeRegistrationId
Deprecated.registrationIdで指定される登録トークンは無効であることを通知します。 ユーザーの端末から、アプリケーションがアンインストールされた場合などに、通知されます。- Parameters:
registrationId
-
-