Template Struct scheduler¶
Defined in File execution.hpp
Struct Documentation¶
-
template<typename
S>
structscheduler¶ Concept that defines a scheduler.
A scheduler type allows a
schedule() operation that creates a sender out of the scheduler. A typical scheduler contains an execution context that will pass to the sender on its creation.- Template Parameters
S: The type that is being checked to see if it’s a scheduler
The type that match this concept must be move and copy constructible and must also define the schedule() CPO.
- See