2017-02-01 22:10:41 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-02-01 22:10:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#import <React/RCTDefines.h>
|
|
|
|
#import <React/RCTJavaScriptExecutor.h>
|
2017-06-23 23:49:55 +00:00
|
|
|
#import <cxxreact/JSExecutor.h>
|
2017-02-01 22:10:41 +00:00
|
|
|
|
|
|
|
namespace facebook {
|
|
|
|
namespace react {
|
|
|
|
|
|
|
|
class RCTObjcExecutorFactory : public JSExecutorFactory {
|
|
|
|
public:
|
|
|
|
RCTObjcExecutorFactory(id<RCTJavaScriptExecutor> jse, RCTJavaScriptCompleteBlock errorBlock);
|
|
|
|
std::unique_ptr<JSExecutor> createJSExecutor(
|
|
|
|
std::shared_ptr<ExecutorDelegate> delegate,
|
|
|
|
std::shared_ptr<MessageQueueThread> jsQueue) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
id<RCTJavaScriptExecutor> m_jse;
|
|
|
|
RCTJavaScriptCompleteBlock m_errorBlock;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|