struct is_sender
Declaration
template <typename Sender>
struct is_sender { /* full declaration omitted */ };Description
A sender is a type that is describing an asynchronous operation. The operation itself might not have started yet. In order to get the result of this asynchronous operation, a sender needs to be connected to a receiver with the corresponding value, error and done channels: * `pika::execution::experimental::connect` In addition, `pika::execution::experimental::::sender_traits ` needs to be specialized in some form. A sender's destructor shall not block pending completion of submitted operations.
Declared at: libs/pika/execution_base/include/pika/execution_base/sender.hpp:167