123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
-
-
- #import "FIRInstanceID+Private.h"
- #import "FIRInstanceID.h"
- #import "FIRInstanceIDKeyPairStore.h"
- #import "FIRInstanceIDTokenManager.h"
-
- @interface FIRInstanceID (Testing)
-
- @property(nonatomic, readwrite, strong) FIRInstanceIDTokenManager *tokenManager;
- @property(nonatomic, readwrite, strong) FIRInstanceIDKeyPairStore *keyPairStore;
- @property(nonatomic, readwrite, copy) NSString *fcmSenderID;
-
-
- - (instancetype)initPrivately;
-
-
- - (void)start;
-
-
- - (void)fetchDefaultToken;
-
- + (int64_t)maxRetryCountForDefaultToken;
- + (int64_t)minIntervalForDefaultTokenRetry;
- + (int64_t)maxRetryIntervalForDefaultTokenInSeconds;
-
- @end
|