洛阳学员端
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.

44 lines
764 B

7 months ago
  1. //
  2. // APFBehavlogManager.h
  3. // APFaceDetectBiz
  4. //
  5. // Created by yukun.tyk on 9/8/16.
  6. // Copyright © 2016 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class BisBehavLog, BisBehavTask;
  10. @interface APBToygerBehavlogManager : NSObject
  11. /**
  12. * @param config id和token
  13. */
  14. - (instancetype)initWithConfig:(NSDictionary *)config;
  15. /**
  16. *
  17. *
  18. * @param task
  19. */
  20. - (void)addTask:(BisBehavTask *)task;
  21. /**
  22. * clearTask
  23. *
  24. *
  25. */
  26. - (void)clearTask;
  27. /**
  28. *
  29. *
  30. * @param invtp
  31. * @param retry
  32. *
  33. * @return
  34. */
  35. - (BisBehavLog *)generateLogWithInvokeType:(NSString *)invtp
  36. withRetry:(NSInteger)retry;
  37. @end