MultiVersionTransaction

Trait MultiVersionTransaction 

Source
pub trait MultiVersionTransaction:
    WithEventBus
    + Send
    + Sync
    + Clone
    + 'static {
    type Query: MultiVersionQueryTransaction;
    type Command: MultiVersionCommandTransaction;

    // Required methods
    fn begin_query<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<Self::Query>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn begin_command<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<Self::Command>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Associated Types§

Required Methods§

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§