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.
64 lines
1.5 KiB
64 lines
1.5 KiB
//
|
|
// IBioAuthTask.h
|
|
// BioAuthEngine
|
|
//
|
|
// Created by yukun.tyk on 11/4/15.
|
|
// Copyright © 2015 DTF. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <BioAuthEngine/APBBackwardCommand.h>
|
|
#import <BioAuthEngine/APBEvent.h>
|
|
#import <BioAuthEngine/APBAuthEngine.h>
|
|
|
|
@class APBTaskContext;
|
|
|
|
/**
|
|
* pipeInfo key
|
|
* value为commandBlock,task可以调用并要求框架执行相应APBBackwardCommand命令
|
|
*/
|
|
extern NSString *const kTaskCommandBlockKey;
|
|
|
|
/**
|
|
* taskConfig key
|
|
* task超时,value为CGFloat,如果task设置了该值,框架将开始task计时器,并在时间到达后,将task超时封装成APBEvent发送给当前task
|
|
*/
|
|
extern NSString *const kTaskTimeoutKey;
|
|
|
|
typedef void (^commandBlock)(APBBackwardCommand *command);
|
|
|
|
@protocol IBioAuthTask <NSObject>
|
|
|
|
@property(nonatomic, copy, readonly) NSString *taskName; //任务名称
|
|
@property(nonatomic, strong, readonly) APBTaskContext *context; //任务上下文
|
|
|
|
/**
|
|
* 开始执行任务队列
|
|
*/
|
|
- (void)invokeWithPipeInfo:(NSMutableDictionary *)pipeInfo;
|
|
|
|
/**
|
|
* 处理中断事件
|
|
*
|
|
* @param event 事件
|
|
* @param callback 事件处理结果回调
|
|
*/
|
|
- (void)processEvent:(APBEvent *)event
|
|
withCompletionCallback:(BioAuthExecCallback)callback;
|
|
|
|
/**
|
|
* 获取任务配置(超时等)
|
|
*/
|
|
- (NSDictionary *)getConfig;
|
|
|
|
/**
|
|
* 重置任务
|
|
*/
|
|
- (void)reset;
|
|
|
|
/**
|
|
* 获取当前管道信息,框架负责传递给下一个task
|
|
*/
|
|
- (NSMutableDictionary *)pipeInfo;
|
|
|
|
@end
|