iOS Doric Registry and so on
This commit is contained in:
@@ -6,11 +6,27 @@
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "DoricAsyncResult.h"
|
||||
#import "DoricRegistry.h"
|
||||
|
||||
typedef NS_ENUM(NSInteger, QueueMode) {
|
||||
JS = 0,
|
||||
UI,
|
||||
INDEPENDENT
|
||||
};
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface DoricDriver : NSObject
|
||||
+(instancetype) instance;
|
||||
|
||||
@property (nonatomic,strong) DoricRegistry *registry;
|
||||
|
||||
-(DoricAsyncResult *)createContext:(NSString *)contextId script:(NSString *)script source:(NSString *)source;
|
||||
-(DoricAsyncResult *)destroyContext:(NSString *)contextId;
|
||||
|
||||
-(DoricAsyncResult *)invokeDoricMethod:(NSString *)method, ...;
|
||||
-(DoricAsyncResult *)invokeContextEntity:(NSString *)contextId method:(NSString *)method, ...;
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
|
Reference in New Issue
Block a user