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.

45 lines
1.0 KiB

/*
* 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.
*/
#include "MountingTransaction.h"
namespace facebook::react {
using Number = MountingTransaction::Number;
MountingTransaction::MountingTransaction(
SurfaceId surfaceId,
Number number,
ShadowViewMutationList &&mutations,
TransactionTelemetry telemetry)
: surfaceId_(surfaceId),
number_(number),
mutations_(std::move(mutations)),
telemetry_(std::move(telemetry)) {}
ShadowViewMutationList const &MountingTransaction::getMutations() const & {
return mutations_;
}
ShadowViewMutationList MountingTransaction::getMutations() && {
return std::move(mutations_);
}
TransactionTelemetry &MountingTransaction::getTelemetry() const {
return telemetry_;
}
SurfaceId MountingTransaction::getSurfaceId() const {
return surfaceId_;
}
Number MountingTransaction::getNumber() const {
return number_;
}
} // namespace facebook::react