You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1004 B
37 lines
1004 B
/*
|
|
* 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <ReactCommon/CallInvoker.h>
|
|
#include <react/renderer/runtimescheduler/RuntimeScheduler.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
/*
|
|
* Exposes RuntimeScheduler to native modules. All calls invonked on JavaScript
|
|
* queue from native modules will be funneled through RuntimeScheduler.
|
|
*/
|
|
class RuntimeSchedulerCallInvoker : public CallInvoker {
|
|
public:
|
|
RuntimeSchedulerCallInvoker(std::weak_ptr<RuntimeScheduler> runtimeScheduler);
|
|
|
|
void invokeAsync(std::function<void()> &&func) override;
|
|
void invokeSync(std::function<void()> &&func) override;
|
|
|
|
private:
|
|
/*
|
|
* RuntimeScheduler is retained by the runtime. It must not be
|
|
* retained by anything beyond the runtime.
|
|
*/
|
|
std::weak_ptr<RuntimeScheduler> runtimeScheduler_;
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|