rocketmq_client/
lib.rs

1//! This crate provides APIs to publish messages to and subscribe messages from [Apache RocketMQ](http://rocketmq.apache.org).
2//! At the moment, it is still work-in-progress.
3pub mod connection;
4pub mod error;
5pub mod frame;
6pub mod message;
7pub mod protocol;
8pub mod publisher;
9pub mod route;