amq-rpc 0.1.0

RabbitMQ RPC library
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod connection;
pub mod error;
pub mod client;
pub mod server;
pub mod types;

pub use connection::AmqpConnection;
pub use client::RpcClient;
pub use server::RpcServer;
pub use error::{RpcError, RpcResult};
pub use types::{Command, CommandHandler};