ATMigrator.h 687 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // ATMigrator.h
  3. // APRemoteLogging
  4. //
  5. // Created by 卡迩 on 2018/6/14.
  6. // Copyright © 2018年 Alipay. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "ATContext.h"
  10. #import "ATConfigMgr.h"
  11. #import "ATBehaviorLogger.h"
  12. @interface ATMigrator : NSObject
  13. #ifdef SDK_IS4_ALIPAY
  14. <AntLogInterface>
  15. #endif
  16. + (ATMigrator *)sharedInstance;
  17. #ifdef SDK_IS4_ALIPAY
  18. @property (nonatomic, strong) id<AntLogInterceptor> interceptor;
  19. @property (nonatomic, strong) id<AutoTrackerObserver> observer;
  20. @property (nonatomic, strong) id<ABTestInfoProvider> provider;
  21. #endif
  22. - (void)setupPeriodExecutionTimer;
  23. - (void)addPeriodicallyExecutedBlock:(void (^)(void))block;
  24. @end