This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/iOS/Pod/Classes/DoricContext.h

33 lines
784 B
C
Raw Normal View History

2019-07-25 21:03:31 +08:00
//
// DoricContext.h
// Doric
//
// Created by pengfei.zhou on 2019/7/25.
//
#import <Foundation/Foundation.h>
2019-07-29 13:48:27 +08:00
#import "DoricDriver.h"
2019-07-25 21:03:31 +08:00
NS_ASSUME_NONNULL_BEGIN
2019-07-31 14:18:20 +08:00
@class DoricRootNode;
2019-07-25 21:03:31 +08:00
@interface DoricContext : NSObject
2019-07-27 14:36:41 +08:00
@property (nonatomic,strong) NSString *contextId;
2019-07-29 13:48:27 +08:00
@property (nonatomic,strong) DoricDriver *driver;
2019-07-29 20:51:53 +08:00
@property (nonatomic,strong) NSMutableDictionary *pluginInstanceMap;
2019-07-31 14:18:20 +08:00
@property (nonatomic,strong) DoricRootNode *rootNode;
2019-07-29 13:48:27 +08:00
- (instancetype)initWithScript:(NSString *)script source:(NSString *)source;
- (DoricAsyncResult *)callEntity:(NSString *)method, ...;
2019-07-27 14:36:41 +08:00
2019-07-30 21:05:27 +08:00
- (DoricAsyncResult *)callEntity:(NSString *)method withArguments:(va_list)args;
- (DoricAsyncResult *)callEntity:(NSString *)method withArgumentsArray:(NSArray *)args;
2019-07-25 21:03:31 +08:00
@end
NS_ASSUME_NONNULL_END