risingwave_rpc_client

Trait RpcClient

source
pub trait RpcClient:
    Send
    + Sync
    + 'static
    + Clone {
    // Required method
    fn new_client<'async_trait>(
        host_addr: HostAddr,
    ) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>
       where Self: 'async_trait;

    // Provided method
    fn new_clients<'async_trait>(
        host_addr: HostAddr,
        size: usize,
    ) -> Pin<Box<dyn Future<Output = Result<Arc<Vec<Self>>>> + Send + 'async_trait>>
       where Self: 'async_trait { ... }
}

Required Methods§

source

fn new_client<'async_trait>( host_addr: HostAddr, ) -> Pin<Box<dyn Future<Output = Result<Self>> + Send + 'async_trait>>
where Self: 'async_trait,

Provided Methods§

source

fn new_clients<'async_trait>( host_addr: HostAddr, size: usize, ) -> Pin<Box<dyn Future<Output = Result<Arc<Vec<Self>>>> + Send + 'async_trait>>
where Self: 'async_trait,

Object Safety§

This trait is not object safe.

Implementors§