pub trait LogsService:
    Send
    + Sync
    + 'static {
    // Required method
    fn export<'life0, 'async_trait>(
        &'life0 self,
        request: Request<ExportLogsServiceRequest>,
    ) -> Pin<Box<dyn Future<Output = Result<Response<ExportLogsServiceResponse>, Status>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Available on crate features gen-tonic-messages and logs and gen-tonic only.
Expand description

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

Required Methods§

Source

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

For performance reasons, it is recommended to keep this RPC alive for the entire life of the application.

Implementors§