pub trait Context: 'static {
fn send<T: IntoMessage>(&self, message: T) -> Result<(), SendError>;
}Expand description
Allows sending messages from workers to back to the caller.
pub trait Context: 'static {
fn send<T: IntoMessage>(&self, message: T) -> Result<(), SendError>;
}Allows sending messages from workers to back to the caller.