OutboxExporter

Trait OutboxExporter 

Source
pub trait OutboxExporter: Send + Sync {
    // Required method
    fn export<'life0, 'life1, 'async_trait>(
        &'life0 self,
        event: &'life1 OutboxEvent,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;

    // Provided method
    fn name(&self) -> &'static str { ... }
}
Expand description

External sink that receives a copy of every outbox event.

Required Methods§

Source

fn export<'life0, 'life1, 'async_trait>( &'life0 self, event: &'life1 OutboxEvent, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Deliver an outbox event to the downstream sink.

Provided Methods§

Source

fn name(&self) -> &'static str

Returns a human-readable identifier for logging.

Implementors§