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.

Required Methods

Send a message back to the caller.

Implementors