Package com.atomikos.icatch.event.transaction

Examples of com.atomikos.icatch.event.transaction.TransactionAbortedEvent


    TxState toState = e.toState();
    if (TxState.TERMINATED.equals(toState)) {
      if (TxState.COMMITTING.equals(fromState)) {
        publishDomainEvent(new TransactionCommittedEvent(root_));
      } else if (TxState.ABORTING.equals(fromState)) {
        publishDomainEvent(new TransactionAbortedEvent(root_));
      } else if (TxState.PREPARING.equals(fromState)) {
        publishDomainEvent(new TransactionReadOnlyEvent(root_));
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.atomikos.icatch.event.transaction.TransactionAbortedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.