ReactivePlusPlus
One more implementation of ReactiveX approach in C++ with care about performance and templates in mind
 
Loading...
Searching...
No Matches
rpp::schedulers::constraint::scheduler Concept Reference

Concept definition

template<typename T>
concept rpp::schedulers::constraint::scheduler = std::is_base_of_v<details::scheduler_tag, std::decay_t<T>> && requires(const T t)
{
{t.create_worker(std::declval<rpp::composite_subscription>())} -> worker;
}
Definition: constraints.hpp:31
Definition: constraints.hpp:28