/* * 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 "BatchedEventQueue.h" namespace facebook::react { BatchedEventQueue::BatchedEventQueue( EventQueueProcessor eventProcessor, std::unique_ptr eventBeat) : EventQueue(std::move(eventProcessor), std::move(eventBeat)) {} void BatchedEventQueue::onEnqueue() const { eventBeat_->request(); } } // namespace facebook::react