photon-backend 0.1.0

Photon publish/subscribe backend implementations and storage adapters
Documentation
1
2
3
4
5
6
7
8
//! Wiring inputs passed to backend `install` functions.
use crate::registry::TopicRegistry;

/// Shared builder context for storage adapter install fns.
pub struct BackendContext {
    /// Inventory-discovered topic descriptors.
    pub registry: TopicRegistry,
}