pub trait SubscribeableStore: Store {
    type Subscription: Iterator<Item = Result<Entry, Error>>;
    fn subscribe(&self, name: Atom) -> Result<Self::Subscription, Error>;
}

Associated Types

Required methods

Implementors