洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
694 B

7 months ago
  1. //
  2. // APRiskSyncServiceProtocol.h
  3. // APPSecuritySDK
  4. //
  5. // Created by eric on 2020/10/15.
  6. // Copyright © 2020 Alipay. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "APRiskSyncHandlerProtocol.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. static NSString* const kEdgeBizTypeGlobal = @"EDGE-GLOBAL";
  12. static NSString* const kEdgeBizTypeSingle = @"EDGE-SINGLE";
  13. static NSString* const kEdgeBizTypeUid = @"EDGE-SINGLE-USER";
  14. static NSString* const kEdgeBizTypeSyncDegradeToConfig = @"EDGE-SYNC-DEGRADE-TO-CONFIG";
  15. @protocol APRiskSyncServiceProtocol <NSObject>
  16. @required
  17. -(void) registerHandler:(id<APRiskSyncHandlerProtocol>)handler;
  18. -(void) registerSyncBiz;
  19. @end
  20. NS_ASSUME_NONNULL_END