Trait bonsaidb::core::pubsub::AsyncSubscriber
pub trait AsyncSubscriber: Send + Sync {
// Required methods
fn subscribe_to_bytes<'life0, 'async_trait>(
&'life0 self,
topic: Vec<u8, Global>
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait, Global>>
where 'life0: 'async_trait,
Self: 'async_trait;
fn unsubscribe_from_bytes<'life0, 'life1, 'async_trait>(
&'life0 self,
topic: &'life1 [u8]
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait, Global>>
where 'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait;
fn receiver(&self) -> &Receiver ⓘ;
// Provided methods
fn subscribe_to<'life0, 'life1, 'async_trait, Topic>(
&'life0 self,
topic: &'life1 Topic
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait, Global>>
where 'life0: 'async_trait,
'life1: 'async_trait,
Topic: 'async_trait + Serialize + Send + Sync,
Self: 'async_trait { ... }
fn unsubscribe_from<'life0, 'life1, 'async_trait, Topic>(
&'life0 self,
topic: &'life1 Topic
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait, Global>>
where 'life0: 'async_trait,
'life1: 'async_trait,
Topic: 'async_trait + Serialize + Send + Sync,
Self: 'async_trait { ... }
}
Expand description
A subscriber to one or more topics.
Required Methods§
fn subscribe_to_bytes<'life0, 'async_trait>(
&'life0 self,
topic: Vec<u8, Global>
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait, Global>>where
'life0: 'async_trait,
Self: 'async_trait,
fn subscribe_to_bytes<'life0, 'async_trait>( &'life0 self, topic: Vec<u8, Global> ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait, Global>>where 'life0: 'async_trait, Self: 'async_trait,
Subscribe to Message
s published to topic
.
Provided Methods§
fn subscribe_to<'life0, 'life1, 'async_trait, Topic>(
&'life0 self,
topic: &'life1 Topic
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait, Global>>where
'life0: 'async_trait,
'life1: 'async_trait,
Topic: 'async_trait + Serialize + Send + Sync,
Self: 'async_trait,
fn subscribe_to<'life0, 'life1, 'async_trait, Topic>( &'life0 self, topic: &'life1 Topic ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait, Global>>where 'life0: 'async_trait, 'life1: 'async_trait, Topic: 'async_trait + Serialize + Send + Sync, Self: 'async_trait,
Subscribe to Message
s published to topic
.
fn unsubscribe_from<'life0, 'life1, 'async_trait, Topic>(
&'life0 self,
topic: &'life1 Topic
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait, Global>>where
'life0: 'async_trait,
'life1: 'async_trait,
Topic: 'async_trait + Serialize + Send + Sync,
Self: 'async_trait,
fn unsubscribe_from<'life0, 'life1, 'async_trait, Topic>( &'life0 self, topic: &'life1 Topic ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait, Global>>where 'life0: 'async_trait, 'life1: 'async_trait, Topic: 'async_trait + Serialize + Send + Sync, Self: 'async_trait,
Unsubscribe from Message
s published to topic
.