Trait CustomActionHandler

Source
pub trait CustomActionHandler<I: CustomAction>: Actor {
    // Required method
    fn handle<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        input: I,
        _ctx: &'life1 mut Context<Self>,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

The trait for actors for handling incoming CustomAction instances.

Required Methods§

Source

fn handle<'life0, 'life1, 'async_trait>( &'life0 mut self, input: I, _ctx: &'life1 mut Context<Self>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Handles the incoming message.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§