Expand description
Knien
Typed RabbitMQ interfacing for async
Rust.
This crate defines several types of channels for interfacing with RabbitMQ in various ways:
DirectChannel
: a channel for publishing messages on direct queues.TopicChannel
: a channel for publishing messages on topic exchangesRpcChannel
: a channel for publishing messages on direct queues, allowing for receiving replies. It also supports publishing an initial message on a direct queue, and setting up a back-and-forth communincation channel.
RpcChannel
s currently require the tokio
runtime to spawn tasks that receive messages and is therefore behind the rpc
feature flag.
Each channel exposes methods to instantiate Publisher
s and Consumer
s, each of which are generic over the bus they publish on or consume from. These buses define what types of payload they send, so Publisher
s and Consumer
s can take care of serializing and deserializing the payloads and make sure the payloads they publish and yield are of the correct types.
There are several kinds of typed buses, each tied to one of the Channels:
DirectBus
: a bus that defines aPublishPayload
type, a formatter for direct queue names, and the type of argument to that formatter.DirectBus
es are used to simply publish messages on a direct queue without expecting any response.DirectBus
es are tied to theDirectChannel
.TopicBus
: a bus that defines aPublishPayload
type, a topic, and anExchange
.TopicBus
es are used to publish and consume messages from a topic exchange.TopicBus
es are tied to theTopicChannel
.RpcBus
: act like aDirectBus
, but further defines aReplyPayload
type and allows for awaiting replies on sent messages.RpcBus
es are tied to theRpcChannel
RpcCommBus
: a bus that definesInitialPayload
,BackPayload
andForthPayload
, and support flows where a single initial message is sent, after which back-and-forth a communication over which multiple messages can be sent is setup.RpcCommBus
es are tied to theRpcChannel
Macros
- Declare a new DirectBus.
- Declare a new RpcBus.
- Declare a new RpcCommBus.
- Declare a new TopicBus.
- Declare a new TopicExchange, specifying its type identifier and name.
Structs
- A reply on an RpcCommBus.
- A connection to the RabbitMQ broker
- A Routing key that can be used to consume messages from a TopicBus. ConsumerRoutingKeys cannot contain
#
and must be at least as concrete as TopicBus::TOPIC_PATTERN. - A message that contains a payload associated with a bus
- A channel for publishing messages on direct queues.
- A reply on an RpcCommBus.
- A publisher associated with a Channel and a Bus. Publishers allow for publishing messages with payloads of the Bus::PublishPayload type. Publishers take care of serializing the payloads before publishing.
- A Routing key that can be used to publish messages on a TopicBus. Can only represent concrete routing keys, i.e. routing keys cannot contain wildcards.
- A channel for publishing messages on direct queues, allowing for receiving replies using RpcBus. It also supports publishing an initial message on a direct queue, and setting up a back-and-forth communincation channel using RpcCommBus.
- A Topic Channel associated with a TopicExchange.
Enums
- This type represents anything that can go wrong when interacting with knien.
- Error replying to a message. These errors should not occur if only knien-based application interact with the RabbitMQ broker
- Error indicating what went wrong in setting up a ConsumerRoutingKey or a PublisherRoutingKey
Traits
- A RrabbitMQ channel
- A bus that allows publishing on a direct queue.
- A bus that allows publishing messages on a direct queue, as well as replying to them.
- An RPC-based communication bus that defines an
InitialPayload
, aBackPayload
andForthPayload
, and supports flows where a single initial message is sent, after which back-and-forth a communication over which multiple messages can be sent is setup. - A bus that is associated with a TopicExchange, and defines a pattern of topics onto which messages can be publised and consumed
- A Topic Exchange
Type Definitions
- Alias for a Result with the error type Error.