Expand description
Message passing infrastructure.
See repository for more info.
Structs§
- Message
Stream - Stream of messages.
- Recv
- Future returned by receive method.
Enums§
- Error
- Transport error.
Traits§
- Messages
- Utility trait for creating message stream with filtered out errors.
- Order
- Transport guaranteeing that all messages will arrive in the order they were sent.
- Receive
- Convenience trait for receiving messages.
- Reliable
- Transport guaranteeing that all messages sent are delivered to the receiver (as long as underlying connection is up and running) - i.e. it does not allow messages to be ‘lost’ in transport.
- Transport
- Trait for transports that implement
mezzengerinterface.