event-store-adapter-rs

This library is designed to turn DynamoDB into an Event Store for Event Sourcing.
日本語
Usage
You can easily implement an Event Sourcing-enabled repository using EventStore.
pub struct UserAccountRepository {
event_store: EventStore<UserAccount, UserAccountEvent>,
}
impl UserAccountRepository {
pub fn new(event_store: EventStore<UserAccount, UserAccountEvent>) -> Self {
Self { event_store }
}
pub async fn store_event(&mut self, event: &UserAccountEvent, version: usize) -> Result<()> {
return self.event_store.persist_event(event, version).await;
}
pub async fn store_event_and_snapshot(&mut self, event: &UserAccountEvent, snapshot: &UserAccount) -> Result<()> {
return self.event_store.persist_event_and_snapshot(event, snapshot).await;
}
pub async fn find_by_id(&self, id: &UserAccountId) -> Result<UserAccount> {
let snapshot = self.event_store.get_latest_snapshot_by_id(id).await?;
match snapshot {
Some((snapshot, version)) => {
let events = self.event_store
.get_events_by_id_since_seq_nr(id, snapshot.seq_nr)
.await?;
let result = UserAccount::replay(events, snapshot, version);
Ok(Some(result))
}
None => Ok(None),
}
}
}
The following is an example of the repository usage.
let event_store = EventStore::new(
aws_dynamodb_client.clone(),
journal_table_name.to_string(),
journal_aid_index_name.to_string(),
snapshot_table_name.to_string(),
snapshot_aid_index_name.to_string(),
64,
);
let mut repository = UserAccountRepository::new(event_store);
let mut user_account = repository.find_by_id(user_account_id).await.unwrap();
let user_account_event = user_account.rename(name).unwrap();
repository
.store_event(&user_account_event, user_account.version())
.await
Table Specifications
See docs/DATABASE_SCHEMA.md.
License.
MIT License. See LICENSE for details.
Other language implementations