pub trait AuxPrepared {
    fn commit(self);
    fn rollback(self);
}

Required Methods

Commit the auxiliary transaction if the STM transaction succeeded.

Rollback the auxiliary transaction if the STM transaction is going to be retried.

Implementors