pub trait ITransactionResourceAsync_Impl: Sized {
    // Required methods
    fn PrepareRequest(
        &self,
        fretaining: BOOL,
        grfrm: u32,
        fwantmoniker: BOOL,
        fsinglephase: BOOL
    ) -> Result<()>;
    fn CommitRequest(&self, grfrm: u32, pnewuow: *const BOID) -> Result<()>;
    fn AbortRequest(
        &self,
        pboidreason: *const BOID,
        fretaining: BOOL,
        pnewuow: *const BOID
    ) -> Result<()>;
    fn TMDown(&self) -> Result<()>;
}

Required Methods§

fn PrepareRequest( &self, fretaining: BOOL, grfrm: u32, fwantmoniker: BOOL, fsinglephase: BOOL ) -> Result<()>

fn CommitRequest(&self, grfrm: u32, pnewuow: *const BOID) -> Result<()>

fn AbortRequest( &self, pboidreason: *const BOID, fretaining: BOOL, pnewuow: *const BOID ) -> Result<()>

fn TMDown(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§