/* * 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 namespace facebook::react { ImageRequest::ImageRequest( ImageSource imageSource, std::shared_ptr telemetry, SharedFunction<> resumeFunction, SharedFunction<> cancelationFunction) : imageSource_(std::move(imageSource)), telemetry_(std::move(telemetry)) { coordinator_ = std::make_shared( std::move(resumeFunction), std::move(cancelationFunction)); } const ImageSource& ImageRequest::getImageSource() const { return imageSource_; } const std::shared_ptr& ImageRequest::getSharedTelemetry() const { return telemetry_; } const ImageResponseObserverCoordinator& ImageRequest::getObserverCoordinator() const { return *coordinator_; } const std::shared_ptr& ImageRequest::getSharedObserverCoordinator() const { return coordinator_; } } // namespace facebook::react