1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #import <Foundation/Foundation.h>
- @class BisBehavLog, BisBehavTask;
- @interface APBToygerBehavlogManager : NSObject
- - (instancetype)initWithConfig:(NSDictionary *)config;
- - (void)addTask:(BisBehavTask *)task;
- - (void)clearTask;
- - (BisBehavLog *)generateLogWithInvokeType:(NSString *)invtp
- withRetry:(NSInteger)retry;
- @end
|