45 static constexpr auto kQUEUE_SIZE_LIMIT = 2048uz;
48 std::shared_ptr<SchedulerInterface> schedulers_;
49 std::reference_wrapper<ExtractorInterface> extractor_;
50 std::reference_wrapper<LoaderInterface> loader_;
51 std::reference_wrapper<MonitorInterface> monitor_;
54 std::atomic_uint32_t nextForwardSequence_;
56 std::vector<util::async::AnyOperation<void>> extractors_;
57 std::vector<util::async::AnyOperation<void>> loaders_;
64 std::shared_ptr<SchedulerInterface> scheduler,
65 std::reference_wrapper<ExtractorInterface> extractor,
66 std::reference_wrapper<LoaderInterface> loader,
67 std::reference_wrapper<MonitorInterface> monitor,
74 run(std::size_t numExtractors)
override;
A type-erased execution context.
Definition AnyExecutionContext.hpp:41