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

Rollback() public method

public Rollback ( Enlistment enlistment ) : void
enlistment Enlistment
return void
        public void Rollback(Enlistment enlistment)
        {
            try
            {
                Rollback();
                enlistment.Done();
            }
            catch (Exception)
            {
                //on a callback thread, can't throw
            }
        }