blob: dc706a2d91c6efc5b04cf8171df3633c03fefa56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@protocol GGLInstanceIDDelegate <NSObject>
/**
* Called when the system determines that tokens need to be refreshed.
* This method is also called if Instance ID has been reset in which
* case, tokens and `GcmPubSub` subscriptions also need to be refreshed.
*
* Instance ID service will throttle the refresh event across all devices
* to control the rate of token updates on application servers.
*/
- (void)onTokenRefresh;
@end
|