type ReplicaClient<T> = Partitioned<StorageGrpcClient, StorageCommand<T>, StorageResponse<T>>;
Aliased Type§
struct ReplicaClient<T> {
pub parts: Vec<GrpcClient<StorageProtoServiceTypes>>,
/* private fields */
}
Fields§
§parts: Vec<GrpcClient<StorageProtoServiceTypes>>
The individual partitions representing per-worker clients.
Implementations
Source§impl<P, C, R> Partitioned<P, C, R>where
(C, R): Partitionable<C, R>,
impl<P, C, R> Partitioned<P, C, R>where
(C, R): Partitionable<C, R>,
Sourcepub fn new(parts: Vec<P>) -> Partitioned<P, C, R>
pub fn new(parts: Vec<P>) -> Partitioned<P, C, R>
Create a client partitioned across multiple client shards.
Trait Implementations
Source§impl<P, C, R> Debug for Partitioned<P, C, R>
impl<P, C, R> Debug for Partitioned<P, C, R>
Source§impl<P, C, R> GenericClient<C, R> for Partitioned<P, C, R>
impl<P, C, R> GenericClient<C, R> for Partitioned<P, C, R>
Source§fn recv<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<Option<R>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
Partitioned<P, C, R>: 'async_trait,
fn recv<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<Option<R>, Error>> + Send + 'async_trait>>where
'life0: 'async_trait,
Partitioned<P, C, R>: 'async_trait,
§Cancel safety
This method is cancel safe. If recv
is used as the event in a tokio::select!
statement and some other branch completes first, it is guaranteed that no messages were
received by this client.