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