pub trait IResourceManager2_Impl: Sized + IResourceManager_Impl {
    // Required methods
    fn Enlist2(
        &self,
        ptransaction: Option<&ITransaction>,
        presasync: Option<&ITransactionResourceAsync>,
        puow: *mut BOID,
        pisolevel: *mut i32,
        pxid: *mut XID,
        ppenlist: *mut Option<ITransactionEnlistmentAsync>
    ) -> Result<()>;
    fn Reenlist2(&self, pxid: *const XID, dwtimeout: u32) -> Result<XACTSTAT>;
}

Required Methods§

fn Enlist2( &self, ptransaction: Option<&ITransaction>, presasync: Option<&ITransactionResourceAsync>, puow: *mut BOID, pisolevel: *mut i32, pxid: *mut XID, ppenlist: *mut Option<ITransactionEnlistmentAsync> ) -> Result<()>

fn Reenlist2(&self, pxid: *const XID, dwtimeout: u32) -> Result<XACTSTAT>

Object Safety§

This trait is not object safe.

Implementors§