risingwave_pb::connector_service::sink_coordination_service_server

Trait SinkCoordinationService

source
pub trait SinkCoordinationService:
    Send
    + Sync
    + 'static {
    type CoordinateStream: Stream<Item = Result<CoordinateResponse, Status>> + Send + 'static;

    // Required method
    fn coordinate<'life0, 'async_trait>(
        &'life0 self,
        request: Request<Streaming<CoordinateRequest>>,
    ) -> Pin<Box<dyn Future<Output = Result<Response<Self::CoordinateStream>, 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 SinkCoordinationServiceServer.

Required Associated Types§

source

type CoordinateStream: Stream<Item = Result<CoordinateResponse, Status>> + Send + 'static

Server streaming response type for the Coordinate method.

Required Methods§

source

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

Implementors§