mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
7c93f5b001
Summary: This diff moves the code of TurboModule Core from ReactCommon/turbomodule to ReactCommon/react/nativemodule For iOS: Pod spec name stays as "ReactCommon/turbomodule/..." for now, only the source/header location is affected. The target will be renamed/restructured closer to TurboModule rollout. changelog: [internal] Internal Reviewed By: RSNara Differential Revision: D23362253 fbshipit-source-id: c2c8207578e50821c7573255d4319b9051b58a37
47 lines
1.3 KiB
Objective-C
47 lines
1.3 KiB
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#import <cxxreact/CxxModule.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
/**
|
|
* A sample CxxModule (legacy system) implementation.
|
|
*/
|
|
class SampleTurboCxxModuleLegacyImpl
|
|
: public facebook::xplat::module::CxxModule {
|
|
public:
|
|
SampleTurboCxxModuleLegacyImpl();
|
|
|
|
std::string getName() override;
|
|
std::map<std::string, folly::dynamic> getConstants() override;
|
|
std::vector<facebook::xplat::module::CxxModule::Method> getMethods() override;
|
|
|
|
// API
|
|
void voidFunc();
|
|
bool getBool(bool arg);
|
|
double getNumber(double arg);
|
|
std::string getString(const std::string &arg);
|
|
folly::dynamic getArray(const folly::dynamic &arg);
|
|
folly::dynamic getObject(const folly::dynamic &arg);
|
|
double getRootTag(double arg);
|
|
folly::dynamic
|
|
getValue(double x, const std::string &y, const folly::dynamic &z);
|
|
void getValueWithCallback(
|
|
const facebook::xplat::module::CxxModule::Callback &callback);
|
|
void getValueWithPromise(
|
|
bool error,
|
|
const facebook::xplat::module::CxxModule::Callback &resolve,
|
|
const facebook::xplat::module::CxxModule::Callback &reject);
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|