Namespaces
Variants

std::execution::run_loop::run_loop

From cppreference.com
 
 
Execution control library
Execution concepts
Execution components
Execution contexts
Execution domains
Forward progress guarantee
Environments
    
    
    
Queries
Completion signatures
Sender adaptor closures
Coroutine utility
 
 
run_loop() noexcept;
(1) (since C++26)
run_loop( run_loop&& ) = delete;
(2) (since C++26)

Constructs a run_loop object.

1) Constructs an execution resource with an empty queue.
2) Move construction is deleted.

Example