A ldap client library that wraps rdkafka to make it easy to use. Message parsing is done with serde.
Currently this is in early beta stage. Library only support use asynchronously.
cargo add high-level-kafka
```rust
async fn main() -> Result<()>{ let publisher = KafkaProducer::from("localhost:9092"); let data = Data { attraone: "123".tostring(), attra_two: 12, };
let mut headers = HashMap::new();
headers.insert("header_one".to_string(), "value_one".to_string());
headers.insert("header_two".to_string(), "value_two".to_string());
let data = Message::new("topic".to_string(), headers, data, "key".to_string());
let result = publisher.produce(data).await;
Ok(())
}
struct Data { attraone: String, attratwo: i8, } ```
```rust
async fn main() -> Result<()>{
let consumer = Consumer::from("groupid", "localhost:9092"); let mutconsumer = Arc::new(Mutex::new(consumer)); let mut con = mutconsumer.clone().lockowned().await; con.subscribetotopic( "topic".to_string(), |data: Data, medatad: Metadata| async move { info!("data: {:?}, metadata: {:?}", data, medatad); }, ) .await; }
struct Data { attraone: String, attratwo: i8, } ```
This consumer can be paused and resumed. It is useful when you want to pause the consumer for a while and then resume it. Note:: This is not production ready (version 0.0.1). ```rust
async fn main() -> Result<()>{
let publisher = publisher::KafkaProducer::from("localhost:9092");
let data = Data {
attra_one: "one".to_string(),
attra_two: 2,
};
let message = publisher::Message::new(
"topic".to_string(),
HashMap::new(),
data,
"some_key".to_string(),
);
let _result = publisher.produce(message).await;
}
struct Data { attraone: String, attratwo: i8, } ```