type ReplicaClient<T> = Partitioned<Client<StorageCommand<T>, StorageResponse<T>>, StorageCommand<T>, StorageResponse<T>>;
Aliased Type§
struct ReplicaClient<T> {
pub parts: Vec<Client<StorageCommand<T>, StorageResponse<T>>>,
/* private fields */
}
Fields§
§parts: Vec<Client<StorageCommand<T>, StorageResponse<T>>>
The individual partitions representing per-worker clients.