meta_client::client

Trait RegionFollowerClient

Source
pub trait RegionFollowerClient:
    Sync
    + Send
    + Debug {
    // Required methods
    fn add_region_follower<'life0, 'async_trait>(
        &'life0 self,
        request: AddRegionFollowerRequest,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn remove_region_follower<'life0, 'async_trait>(
        &'life0 self,
        request: RemoveRegionFollowerRequest,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn start<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        urls: &'life1 [&'life2 str],
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait;
}
Expand description

A trait for clients that can manage region followers.

Required Methods§

Source

fn add_region_follower<'life0, 'async_trait>( &'life0 self, request: AddRegionFollowerRequest, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Source

fn remove_region_follower<'life0, 'async_trait>( &'life0 self, request: RemoveRegionFollowerRequest, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Source

fn start<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, urls: &'life1 [&'life2 str], ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Implementors§