Package org.prevayler.foundation

Examples of org.prevayler.foundation.Turn


  private TransactionGuide guideFor(Capsule capsule) {
    synchronized (_nextTurnMonitor) {
      TransactionTimestamp timestamp = new TransactionTimestamp(capsule, _nextTransaction, _pausableClock.realTime());

      // Count this transaction
      Turn turn = _nextTurn;
      _nextTurn = _nextTurn.next();
      _nextTransaction++;

      return new TransactionGuide(timestamp, turn);
    }
View Full Code Here

TOP

Related Classes of org.prevayler.foundation.Turn

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.