Template Struct scheduler

Struct Documentation

template<typename S>
struct scheduler

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

sender