Skip to main content

RlmEventBus

Trait RlmEventBus 

Source
pub trait RlmEventBus: Send + Sync {
    // Required methods
    fn emit_progress(&self, event: RlmProgressEvent);
    fn emit_completion(&self, event: RlmCompletion);
}
Expand description

Trait for emitting RLM events (progress + completion).

Required Methods§

Source

fn emit_progress(&self, event: RlmProgressEvent)

Emit a progress tick.

Source

fn emit_completion(&self, event: RlmCompletion)

Emit the terminal completion record.

Implementors§