FBSDKSuggestedEventsIndexer.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (c) Meta Platforms, Inc. and affiliates.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. */
  8. #if !TARGET_OS_TV
  9. #import <FBSDKCoreKit/FBSDKSuggestedEventsIndexerProtocol.h>
  10. #import <Foundation/Foundation.h>
  11. @protocol FBSDKGraphRequestFactory;
  12. @protocol FBSDKServerConfigurationProviding;
  13. @protocol FBSDKSwizzling;
  14. @protocol FBSDKSettings;
  15. @protocol FBSDKEventLogging;
  16. @protocol FBSDKFeatureExtracting;
  17. @protocol FBSDKEventProcessing;
  18. NS_ASSUME_NONNULL_BEGIN
  19. /**
  20. Internal type exposed to facilitate transition to Swift.
  21. API Subject to change or removal without warning. Do not use.
  22. @warning INTERNAL - DO NOT USE
  23. */
  24. NS_SWIFT_NAME(_SuggestedEventsIndexer)
  25. @interface FBSDKSuggestedEventsIndexer : NSObject <FBSDKSuggestedEventsIndexer>
  26. - (instancetype)init NS_UNAVAILABLE;
  27. + (instancetype)new NS_UNAVAILABLE;
  28. - (instancetype)initWithGraphRequestFactory:(id<FBSDKGraphRequestFactory>)graphRequestFactory
  29. serverConfigurationProvider:(id<FBSDKServerConfigurationProviding>)serverConfigurationProvider
  30. swizzler:(Class<FBSDKSwizzling>)swizzler
  31. settings:(id<FBSDKSettings>)settings
  32. eventLogger:(id<FBSDKEventLogging>)eventLogger
  33. featureExtractor:(Class<FBSDKFeatureExtracting>)featureExtractor
  34. eventProcessor:(id<FBSDKEventProcessing>)eventProcessor
  35. NS_DESIGNATED_INITIALIZER;
  36. - (void)enable;
  37. @end
  38. NS_ASSUME_NONNULL_END
  39. #endif