vmbus_client

Trait VmbusMessageSource

Source
pub trait VmbusMessageSource: AsyncRecv + Send {
    // Provided methods
    fn pause_message_stream(&mut self) { ... }
    fn resume_message_stream(&mut self) { ... }
}
Expand description

A stream of vmbus messages that can be paused and resumed.

Provided Methods§

Source

fn pause_message_stream(&mut self)

Stop accepting new messages from the synic. After this is called, the message source must return any pending messages already in the queue, and then return EOF.

Source

fn resume_message_stream(&mut self)

Resume accepting new messages from the synic.

Implementors§