pub trait RobonixSystemSomaHealth:
Send
+ Sync
+ 'static {
type StreamHealthStream: Stream<Item = Result<SomaHealthSnapshot, Status>> + Send + 'static;
// Required method
fn stream_health<'life0, 'async_trait>(
&'life0 self,
request: Request<StreamHealthRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<Self::StreamHealthStream>, 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 RobonixSystemSomaHealthServer.
Required Associated Types§
Sourcetype StreamHealthStream: Stream<Item = Result<SomaHealthSnapshot, Status>> + Send + 'static
type StreamHealthStream: Stream<Item = Result<SomaHealthSnapshot, Status>> + Send + 'static
Server streaming response type for the StreamHealth method.