Expand description
Equivalent of mpsc or crossbeam-channel, but allows sending messages with an index associated with them, to be delivered in the specific indexed order.
This enables performing multi-threaded work without accidentally reordering results.
Results are delivered as soon as possible, with minimal buffering. Items received out of order are temporarily kept in a binary heap.
Structs§
- Receiver
- Receiver that orders messages by an index
- Recv
Error - Error type
- Send
Error - Error type
- Sender
- A channel sender that orders messages by an index
Enums§
- TryRecv
Error - Error type
- TrySend
Error - Error type