mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: This diff moves fabric C++ code from ReactCommon/fabric to ReactCommon/react/renderer As part of this diff I also refactored components, codegen and callsites on CatalystApp, FB4A and venice Script: P137350694 changelog: [internal] internal refactor Reviewed By: fkgozali Differential Revision: D22852139 fbshipit-source-id: f85310ba858b6afd81abfd9cbe6d70b28eca7415
67 lines
1.9 KiB
C++
67 lines
1.9 KiB
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
|
|
|
|
#include <ReactCommon/RuntimeExecutor.h>
|
|
#include <react/renderer/componentregistry/ComponentDescriptorFactory.h>
|
|
#include <react/renderer/core/EventBeat.h>
|
|
#include <react/renderer/uimanager/primitives.h>
|
|
#include <react/utils/ContextContainer.h>
|
|
#include <react/utils/RunLoopObserver.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
/*
|
|
* Contains all external dependencies of Scheduler.
|
|
* Copyable.
|
|
*/
|
|
struct SchedulerToolbox final {
|
|
/*
|
|
* Represents general purpose DI container for product components/needs.
|
|
* Must not be `nullptr`.
|
|
*/
|
|
ContextContainer::Shared contextContainer;
|
|
|
|
/*
|
|
* Represents externally managed, lazily available collection of components.
|
|
*/
|
|
ComponentRegistryFactory componentRegistryFactory;
|
|
|
|
/*
|
|
* Represents running JavaScript VM and associated execution queue.
|
|
*/
|
|
RuntimeExecutor runtimeExecutor;
|
|
|
|
/*
|
|
* Represent connections with a platform-specific UI run loops.
|
|
*/
|
|
RunLoopObserver::Factory mainRunLoopObserverFactory;
|
|
|
|
/*
|
|
* Asynchronous & synchronous event beats.
|
|
* Represent connections with the platform-specific run loops and general
|
|
* purpose background queue.
|
|
*/
|
|
EventBeat::Factory asynchronousEventBeatFactory;
|
|
EventBeat::Factory synchronousEventBeatFactory;
|
|
|
|
/*
|
|
* General-purpose executor that is used to dispatch work on some utility
|
|
* queue (mostly) asynchronously to avoid unnecessary blocking the caller
|
|
* queue.
|
|
* The concrete implementation can use a serial or concurrent queue.
|
|
* Due to architectural constraints, the concrete implementation *must* call
|
|
* the call back synchronously if the executor is invoked on the main thread.
|
|
*/
|
|
BackgroundExecutor backgroundExecutor;
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|