Skip to main content

RobonixSystemLiaisonHandsfreeEvents

Trait RobonixSystemLiaisonHandsfreeEvents 

Source
pub trait RobonixSystemLiaisonHandsfreeEvents:
    Send
    + Sync
    + 'static {
    type WatchHandsfreeEventsStream: Stream<Item = Result<VoiceEvent, Status>> + Send + 'static;

    // Required method
    fn watch_handsfree_events<'life0, 'async_trait>(
        &'life0 self,
        request: Request<WatchHandsfreeEventsRequest>,
    ) -> Pin<Box<dyn Future<Output = Result<Response<Self::WatchHandsfreeEventsStream>, 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 RobonixSystemLiaisonHandsfreeEventsServer.

Required Associated Types§

Source

type WatchHandsfreeEventsStream: Stream<Item = Result<VoiceEvent, Status>> + Send + 'static

Server streaming response type for the WatchHandsfreeEvents method.

Required Methods§

Source

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

Implementors§