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/DoricJSEngine.h

32 lines
745 B
C
Raw Normal View History

2019-07-26 14:19:42 +08:00
//
// DoricJSEngine.h
// Doric
//
// Created by pengfei.zhou on 2019/7/26.
//
#import <Foundation/Foundation.h>
2019-07-27 14:36:41 +08:00
#import <JavaScriptCore/JavaScriptCore.h>
#import "DoricRegistry.h"
2019-07-26 14:19:42 +08:00
NS_ASSUME_NONNULL_BEGIN
@interface DoricJSEngine : NSObject
2019-07-27 14:36:41 +08:00
@property(nonatomic,strong) dispatch_queue_t jsQueue;
@property(nonatomic,strong) DoricRegistry *registry;
2019-07-29 13:48:27 +08:00
- (void)prepareContext:(NSString *)contextId script:(NSString *)script source:(NSString *)source;
2019-07-27 14:36:41 +08:00
2019-07-29 13:48:27 +08:00
- (void)destroyContext:(NSString *)contextId;
2019-07-27 14:36:41 +08:00
2019-07-29 13:48:27 +08:00
- (JSValue *)invokeDoricMethod:(NSString *)method, ...;
2019-07-27 14:36:41 +08:00
2019-07-29 13:48:27 +08:00
- (JSValue *)invokeDoricMethod:(NSString *)method arguments:(va_list)args;
2019-07-27 14:36:41 +08:00
2019-07-29 13:48:27 +08:00
- (JSValue *)invokeDoricMethod:(NSString *)method argumentsArray:(NSArray *)args;
2019-07-26 14:19:42 +08:00
@end
NS_ASSUME_NONNULL_END