38 lines
1.0 KiB
C
38 lines
1.0 KiB
C
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "NativeModule.h"
|
||
|
|
||
|
#include <cxxreact/CxxModule.h>
|
||
|
|
||
|
namespace facebook {
|
||
|
namespace react {
|
||
|
|
||
|
class Instance;
|
||
|
|
||
|
std::function<void(folly::dynamic)> makeCallback(
|
||
|
std::weak_ptr<Instance> instance, ExecutorToken token, const folly::dynamic& callbackId);
|
||
|
|
||
|
class CxxNativeModule : public NativeModule {
|
||
|
public:
|
||
|
CxxNativeModule(std::weak_ptr<Instance> instance,
|
||
|
std::unique_ptr<xplat::module::CxxModule> module);
|
||
|
|
||
|
std::string getName() override;
|
||
|
std::vector<MethodDescriptor> getMethods() override;
|
||
|
folly::dynamic getConstants() override;
|
||
|
bool supportsWebWorkers() override;
|
||
|
void invoke(ExecutorToken token, unsigned int reactMethodId, folly::dynamic&& params) override;
|
||
|
MethodCallResult callSerializableNativeHook(
|
||
|
ExecutorToken token, unsigned int hookId, folly::dynamic&& args) override;
|
||
|
|
||
|
private:
|
||
|
std::weak_ptr<Instance> instance_;
|
||
|
std::unique_ptr<xplat::module::CxxModule> module_;
|
||
|
std::vector<xplat::module::CxxModule::Method> methods_;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|