/* * Copyright 2017 Google * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #import #import "FirebaseInAppMessaging/Sources/Private/Flows/FIRIAMActivityLogger.h" #import "FirebaseInAppMessaging/Sources/Private/Flows/FIRIAMBookKeeper.h" #import "FirebaseInAppMessaging/Sources/Private/Flows/FIRIAMDisplayExecutor.h" #import "FirebaseInAppMessaging/Sources/Private/Flows/FIRIAMMessageClientCache.h" #import "FirebaseInAppMessaging/Sources/Private/Runtime/FIRIAMSDKModeManager.h" #import "FirebaseInAppMessaging/Sources/Private/Util/FIRIAMTimeFetcher.h" @protocol FIRIAMAnalyticsEventLogger; NS_ASSUME_NONNULL_BEGIN @interface FIRIAMFetchSetting : NSObject @property(nonatomic) NSTimeInterval fetchMinIntervalInMinutes; @end typedef void (^FIRIAMFetchMessageCompletionHandler)( NSArray *_Nullable messages, NSNumber *_Nullable nextFetchWaitTime, NSInteger discardedMessageCount, NSError *_Nullable error); @protocol FIRIAMMessageFetcher - (void)fetchMessagesWithImpressionList:(NSArray *)impressonList withCompletion:(FIRIAMFetchMessageCompletionHandler)completion; @end // Parent class for supporting different fetching flows. Subclass is supposed to trigger // checkAndFetch at appropriate moments based on its fetch strategy @interface FIRIAMFetchFlow : NSObject - (instancetype)initWithSetting:(FIRIAMFetchSetting *)setting messageCache:(FIRIAMMessageClientCache *)cache messageFetcher:(id)messageFetcher timeFetcher:(id)timeFetcher bookKeeper:(id)displayBookKeeper activityLogger:(FIRIAMActivityLogger *)activityLogger analyticsEventLogger:(id)analyticsEventLogger FIRIAMSDKModeManager:(FIRIAMSDKModeManager *)sdkModeManager displayExecutor:(FIRIAMDisplayExecutor *)displayExecutor; // Triggers a potential fetch of in-app messaging from the source. It would check and respect the // the fetchMinIntervalInMinutes defined in setting - (void)checkAndFetchForInitialAppLaunch:(BOOL)forInitialAppLaunch; @end NS_ASSUME_NONNULL_END