33 lines
784 B
Objective-C
33 lines
784 B
Objective-C
//
|
|
// DoricContext.h
|
|
// Doric
|
|
//
|
|
// Created by pengfei.zhou on 2019/7/25.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "DoricDriver.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class DoricRootNode;
|
|
|
|
@interface DoricContext : NSObject
|
|
|
|
@property (nonatomic,strong) NSString *contextId;
|
|
@property (nonatomic,strong) DoricDriver *driver;
|
|
@property (nonatomic,strong) NSMutableDictionary *pluginInstanceMap;
|
|
@property (nonatomic,strong) DoricRootNode *rootNode;
|
|
|
|
- (instancetype)initWithScript:(NSString *)script source:(NSString *)source;
|
|
|
|
- (DoricAsyncResult *)callEntity:(NSString *)method, ...;
|
|
|
|
- (DoricAsyncResult *)callEntity:(NSString *)method withArguments:(va_list)args;
|
|
|
|
- (DoricAsyncResult *)callEntity:(NSString *)method withArgumentsArray:(NSArray *)args;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|