pub trait SyncMediatorInternalNext {
// Required method
fn next(&self) -> Result<(), TryRecvError>;
}Expand description
Process the next event Ev from the channel.
This will call all listeners with a clone of that event.
pub trait SyncMediatorInternalNext {
// Required method
fn next(&self) -> Result<(), TryRecvError>;
}Process the next event Ev from the channel.
This will call all listeners with a clone of that event.