Rhino.Queues.Internal.TransactionEnlistment.SinglePhaseCommit C# (CSharp) Method

SinglePhaseCommit() public method

public SinglePhaseCommit ( SinglePhaseEnlistment singlePhaseEnlistment ) : void
singlePhaseEnlistment SinglePhaseEnlistment
return void
        public void SinglePhaseCommit(SinglePhaseEnlistment singlePhaseEnlistment)
        {
            try
            {
                Commit();
                singlePhaseEnlistment.Done();
            }
            catch (Exception)
            {
                //on a callback thread, can't throw
            }
        }