bonus-material-app/nativeplugins/Mpaas-Scan/ios/APRemoteLogging.framework/Headers/ATActionMgr.h

41 lines
722 B
C
Raw Normal View History

2024-12-20 09:23:59 +08:00
//
// ATActionMgr.h
// ATrack
//
// Created by 卡迩 on 2018/4/26.
// Copyright © 2018年 Alipay. All rights reserved.
//
#import <Foundation/Foundation.h>
@class ATAction;
/**
*
*/
@interface ATActionMgr : NSObject
@property (nonatomic, readonly, strong) NSOperationQueue *actionQueue; /**< 操作队列*/
/**
*
*/
- (void)enqueueAction:(ATAction *)action;
@end
////////////////////////////////////////////////////////////////////////////////
/**
*
*/
@interface ATAction : NSOperation
@property (nonatomic, copy) NSString *actionName; /**< 操作名*/
/**
* . . \c YES.
*/
- (BOOL)validate;
@end