[][src]Trait tonic::server::StreamingService

pub trait StreamingService<R> {
    type Response;
    type ResponseStream: Stream<Item = Result<Self::Response, Status>>;
    type Future: Future<Output = Result<Response<Self::ResponseStream>, Status>>;
    fn call(&mut self, request: Request<Streaming<R>>) -> Self::Future;
}

A specialization of tower_service::Service.

Existing tower_service::Service implementations with the correct form will automatically implement StreamingService.

Associated Types

type Response

Protobuf response message type

type ResponseStream: Stream<Item = Result<Self::Response, Status>>

Stream of outbound response messages

type Future: Future<Output = Result<Response<Self::ResponseStream>, Status>>

Response future

Loading content...

Required methods

fn call(&mut self, request: Request<Streaming<R>>) -> Self::Future

Call the service

Loading content...

Implementors

impl<T, S, M1, M2> StreamingService<M1> for T where
    T: Service<Request<Streaming<M1>>, Response = Response<S>, Error = Status>,
    S: Stream<Item = Result<M2, Status>>, 
[src]

type Response = M2

type ResponseStream = S

type Future = T::Future

Loading content...