Trait meio::handlers::TaskEliminated[][src]

pub trait TaskEliminated<T: LiteTask, M: Tag>: Actor {
    fn handle<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        id: IdOf<T>,
        tag: M,
        result: Result<T::Output, TaskError>,
        ctx: &'life1 mut Context<Self>
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }
Expand description

Listens for spawned tasks finished.

Required methods

Called when the Task finished.

Implementors