Skip to main content

TransactionRequestJournal

Trait TransactionRequestJournal 

Source
pub trait TransactionRequestJournal: Send + Sync {
    // Required method
    fn persist_transaction_request<'life0, 'async_trait>(
        &'life0 self,
        timestamp: u64,
        command_data: Vec<u8>,
        message: EngineMessage,
        request_uuid: Uuid,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn persist_transaction_request<'life0, 'async_trait>( &'life0 self, timestamp: u64, command_data: Vec<u8>, message: EngineMessage, request_uuid: Uuid, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§