Trait ll::reporters::Reporter

source ·
pub trait Reporter: Send + Sync {
    fn task_start(&self, _task: Arc<TaskInternal>) { ... }
    fn task_end(&self, _task: Arc<TaskInternal>) { ... }
    fn task_progress(&self, _task: Arc<TaskInternal>) { ... }
}

Provided Methods

Implementors