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§
Sourcefn pause_message_stream(&mut self)
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.
Sourcefn resume_message_stream(&mut self)
fn resume_message_stream(&mut self)
Resume accepting new messages from the synic.