mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: This diff finally uses all facilities from the previous diffs to build an implementation of `RCTMountingTransactionObserving` protocol which does *not* require using expensive Objective-C runtime features. In the coming diffs, we will see how it can/should be used. Changelog: [Internal] Fabric-specific internal change. Reviewed By: sammy-SC Differential Revision: D18217101 fbshipit-source-id: 34f411dcb527dc81570c2f2833ce13b40e1450db
32 lines
843 B
C++
32 lines
843 B
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 <react/mounting/MountingTelemetry.h>
|
|
#include <react/mounting/MountingTransaction.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
/*
|
|
* Contains all (meta)information related to a MountingTransaction except a list
|
|
* of mutation instructions.
|
|
* The class is meant to be used when a consumer should not have access to all
|
|
* information about the transaction (incapsulation) but still needs to observe
|
|
* it to produce some side-effects.
|
|
*/
|
|
class MountingTransactionMetadata final {
|
|
public:
|
|
SurfaceId surfaceId;
|
|
MountingTransaction::Number number;
|
|
MountingTelemetry telemetry;
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|