/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include #include #import #import #import namespace facebook { namespace react { class RCTObjcExecutorFactory : public JSExecutorFactory { public: RCTObjcExecutorFactory( id jse, RCTJavaScriptCompleteBlock errorBlock); std::unique_ptr createJSExecutor( std::shared_ptr delegate, std::shared_ptr jsQueue) override; private: id m_jse; RCTJavaScriptCompleteBlock m_errorBlock; }; } // namespace react } // namespace facebook