umadb-client
Rust gRPC client library for UmaDB event store.
Overview
umadb-client provides a high-level, idiomatic Rust client for connecting to and interacting with UmaDB servers. It wraps the gRPC protocol defined in umadb-proto with a convenient async API.
Features
- Simple async API for reading and writing events
- Type-safe operations using
umadb-dcb types
- Streaming subscriptions for real-time event delivery
- Connection management with automatic reconnection
- Built on Tokio and Tonic for high-performance async I/O
Usage
Add this to your Cargo.toml:
[dependencies]
umadb-client = "0.1"
Basic example:
use futures::StreamExt;
use umadb_client::UmaDBClient;
use umadb_dcb::{
DCBAppendCondition, DCBError, DCBEvent, DCBEventStoreAsync, DCBQuery, DCBQueryItem,
};
use uuid::Uuid;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let url = "http://localhost:50051".to_string();
let client = UmaDBClient::new(url).connect_async().await?;
let boundary = DCBQuery::new().item(
DCBQueryItem::new()
.types(["example"])
.tags(["tag1", "tag2"]),
);
let mut read_response = client
.read(Some(boundary.clone()), None, false, None, false)
.await?;
while let Some(result) = read_response.next().await {
match result {
Ok(event) => {
println!(
"Got event at position {}: {:?}",
event.position, event.event
);
}
Err(status) => panic!("gRPC stream error: {}", status),
}
}
let last_known_position = read_response.head().await?;
println!("Last known position is: {:?}", last_known_position);
let event = DCBEvent::default()
.event_type("example")
.tags(["tag1", "tag2"])
.data(b"Hello, world!")
.uuid(Uuid::new_v4());
let condition = DCBAppendCondition::new(boundary.clone()).after(last_known_position);
let position1 = client
.append(vec![event.clone()], Some(condition.clone()))
.await?;
println!("Appended event at position: {}", position1);
let conflicting_event = DCBEvent::default()
.event_type("example")
.tags(["tag1", "tag2"])
.data(b"Hello, world!")
.uuid(Uuid::new_v4());
let conflicting_result = client
.append(vec![conflicting_event.clone()], Some(condition.clone()))
.await;
match conflicting_result {
Err(DCBError::IntegrityError(integrity_error)) => {
println!("Conflicting event was rejected: {:?}", integrity_error);
}
other => panic!("Expected IntegrityError, got {:?}", other),
}
println!(
"Retrying to append event at position: {:?}",
last_known_position
);
let position2 = client
.append(vec![event.clone()], Some(condition.clone()))
.await?;
if position1 == position2 {
println!("Append method returned same commit position: {}", position2);
} else {
panic!("Expected idempotent retry!")
}
let mut subscription = client.read(None, None, false, None, true).await?;
while let Some(result) = subscription.next().await {
match result {
Ok(ev) => {
println!("Processing event at {}: {:?}", ev.position, ev.event);
if ev.position == position2 {
println!("Projection has processed new event!");
break;
}
}
Err(status) => panic!("gRPC stream error: {}", status),
}
}
Ok(())
}
Part of UmaDB
This crate is part of UmaDB, a high-performance open-source event store built for Dynamic Consistency Boundaries.
License
Licensed under either of:
at your option.