case enqueued(remaining: Int)
The stream successfully enqueued the element.
case dropped(Element)
The stream didn’t enqueue the element because the buffer was full.
Availability
Technology
case terminated
This indicates the stream terminated prior to calling yield
, either because the stream finished normally or through cancellation.
case enqueued(remaining: Int)
case dropped(Element)