newsmemory-ios-sdk/Frameworks/React-RuntimeApple.xcframework/ios-arm64/Headers/ReactCommon/RCTHermesInstance.h

42 lines
1.1 KiB
Objective-C

/*
* 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.
*/
#import <UIKit/UIKit.h>
#import <cxxreact/MessageQueueThread.h>
#import <hermes/Public/CrashManager.h>
#import <jsi/jsi.h>
#import <react/runtime/JSRuntimeFactory.h>
#import <react/runtime/hermes/HermesInstance.h>
namespace facebook::react {
using CrashManagerProvider =
std::function<std::shared_ptr<::hermes::vm::CrashManager>()>;
// ObjC++ wrapper for HermesInstance.cpp
class RCTHermesInstance : public JSRuntimeFactory {
public:
RCTHermesInstance();
RCTHermesInstance(CrashManagerProvider crashManagerProvider);
RCTHermesInstance(
CrashManagerProvider crashManagerProvider,
bool allocInOldGenBeforeTTI);
std::unique_ptr<JSRuntime> createJSRuntime(
std::shared_ptr<MessageQueueThread> msgQueueThread) noexcept override;
~RCTHermesInstance() override{};
private:
CrashManagerProvider _crashManagerProvider;
std::unique_ptr<HermesInstance> _hermesInstance;
bool _allocInOldGenBeforeTTI;
};
} // namespace facebook::react