Trait maplibre::io::apc::Context

source ·
pub trait Context: 'static {
    // Required method
    fn send_back<T: IntoMessage>(&self, message: T) -> Result<(), SendError>;
}
Expand description

Allows sending messages from workers to back to the caller.

Required Methods§

source

fn send_back<T: IntoMessage>(&self, message: T) -> Result<(), SendError>

Send a message back to the caller.

Object Safety§

This trait is not object safe.

Implementors§