Lines Matching refs:receiver
10 A receiver represents the continuation of an asynchronous operation. An
12 error, or it may be cancelled. A receiver has three principal operations
15 receiver’s ['completion-signal operations].
19 concept receiver =
29 receiver<T> &&
34 The receiver’s completion-signal operations have semantic requirements that are
35 collectively known as the ['receiver contract], described below:
37 * None of a receiver’s completion-signal operations shall be invoked before
39 returned by `execution::connect` to connect that receiver to a sender.
42 exactly one of the receiver’s completion-signal operations shall complete
43 non-exceptionally before the receiver is destroyed.
46 `execution::set_error` or `execution::set_done` on the receiver.
48 Once one of a receiver’s completion-signal operations has completed
49 non-exceptionally, the receiver contract has been satisfied.