pub trait ProtoStorage: Send + Sync + 'static {
    type CommandResponseStreamStream: Stream<Item = Result<ProtoStorageResponse, Status>> + Send + 'static;

    // Required method
    fn command_response_stream<'life0, 'async_trait>(
        &'life0 self,
        request: Request<Streaming<ProtoStorageCommand>>
    ) -> Pin<Box<dyn Future<Output = Result<Response<Self::CommandResponseStreamStream>, Status>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Generated trait containing gRPC methods that should be implemented for use with ProtoStorageServer.

Required Associated Types§

source

type CommandResponseStreamStream: Stream<Item = Result<ProtoStorageResponse, Status>> + Send + 'static

Server streaming response type for the CommandResponseStream method.

Required Methods§

source

fn command_response_stream<'life0, 'async_trait>( &'life0 self, request: Request<Streaming<ProtoStorageCommand>> ) -> Pin<Box<dyn Future<Output = Result<Response<Self::CommandResponseStreamStream>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementations on Foreign Types§

source§

impl<F, G> ProtoStorage for GrpcServer<F>
where F: Fn() -> G + Send + Sync + 'static, G: StorageClient + 'static,

§

type CommandResponseStreamStream = Pin<Box<dyn Stream<Item = Result<ProtoStorageResponse, Status>> + Send>>

source§

fn command_response_stream<'life0, 'async_trait>( &'life0 self, request: Request<Streaming<ProtoStorageCommand>> ) -> Pin<Box<dyn Future<Output = Result<Response<Self::CommandResponseStreamStream>, TonicStatus>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§