Trait bonsaidb::core::pubsub::AsyncSubscriber
source · pub trait AsyncSubscriber: Send + Sync {
// Required methods
fn subscribe_to_bytes<'life0, 'async_trait>(
&'life0 self,
topic: Vec<u8>
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
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>>
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>>
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>>
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§
sourcefn subscribe_to_bytes<'life0, 'async_trait>(
&'life0 self,
topic: Vec<u8>
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
fn subscribe_to_bytes<'life0, 'async_trait>(
&'life0 self,
topic: Vec<u8>
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
Subscribe to Message
s published to topic
.
Provided Methods§
sourcefn subscribe_to<'life0, 'life1, 'async_trait, Topic>(
&'life0 self,
topic: &'life1 Topic
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + '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>>
Subscribe to Message
s published to topic
.
Object Safety§
This trait is not object safe.