template<typename T, size_t N = 2>
struct condy::Channel< T, N >::PopAwaiter
Awaiter for popping an item from the channel.
Returns
std::pair<int, T> The result of the pop operation. 0 and the popped item if successful; -EPIPE if the channel is closed; -ECANCELED if the pop operation was cancelled.