OliveappViewUpdateEventDelegate.h 600 B

123456789101112131415161718192021222324252627
  1. //
  2. // AsyncLivenessDetectorDelegate.h
  3. // LivenessDetectionViewSDK
  4. //
  5. // Created by Jiteng Hao on 16/1/12.
  6. // Copyright © 2016年 Oliveapp. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "OliveappAsyncPrestartValidatorDelegate.h"
  10. #import "OliveappAsyncLivenessDetectorDelegate.h"
  11. @protocol OliveappViewUpdateEventDelegate <NSObject, OliveappAsyncLivenessDetectorDelegate, OliveappAsyncPrestartValidatorDelegate>
  12. @optional
  13. /**
  14. * 初始化成功的回调
  15. */
  16. - (void) onInitializeSucc;
  17. /**
  18. * 初始化失败的回调
  19. */
  20. - (void) onInitializeFail:(NSError *) error;
  21. @end