tokio-events 0.2.3

A modern, type-safe async event bus for Rust applications
Documentation
1
2
3
4
5
6
//! Persistence layer for the event bus.
//!
//! This module provides durable storage for events to ensure they survive application crashes.

pub mod redb;
pub use self::redb::{RedbDispatcher, RedbRegistry};