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

24 lines
471 B
C
Raw Normal View History

2019-07-29 13:48:27 +08:00
//
// DoricContextManager.h
// Doric
//
// Created by pengfei.zhou on 2019/7/29.
//
#import <Foundation/Foundation.h>
#import "DoricContext.h"
NS_ASSUME_NONNULL_BEGIN
@interface DoricContextManager : NSObject
2019-07-29 14:51:35 +08:00
+ (instancetype)instance;
2019-07-29 13:48:27 +08:00
2019-07-29 14:51:35 +08:00
- (void)createContext:(DoricContext *)context script:(NSString *)script source:(NSString *)source;
2019-07-29 13:48:27 +08:00
2019-07-29 14:51:35 +08:00
- (void)destroyContext:(DoricContext *)context;
2019-07-29 20:23:00 +08:00
- (DoricContext *)getContext:(NSString *)contextId;
2019-07-29 13:48:27 +08:00
@end
NS_ASSUME_NONNULL_END