pub trait EventConsumerService: Send + Sync + 'static {
    type ConsumeEventStream: Stream<Item = Result<ConsumeEventOut, Status>> + Send + 'static;
    // Required method
    fn consume_event<'life0, 'async_trait>(
        &'life0 self,
        request: Request<Streaming<ConsumeEventIn>>
    ) -> Pin<Box<dyn Future<Output = Result<Response<Self::ConsumeEventStream>, 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 EventConsumerServiceServer.
Required Associated Types§
sourcetype ConsumeEventStream: Stream<Item = Result<ConsumeEventOut, Status>> + Send + 'static
 
type ConsumeEventStream: Stream<Item = Result<ConsumeEventOut, Status>> + Send + 'static
Server streaming response type for the ConsumeEvent method.