Package org.hibernate.envers.internal.synchronization.work

Examples of org.hibernate.envers.internal.synchronization.work.AuditWorkUnit.perform()


    while ( (vwu = undoQueue.poll()) != null ) {
      vwu.undo( session );
    }

    while ( (vwu = workUnits.poll()) != null ) {
      vwu.perform( session, revisionData );
      entityChangeNotifier.entityChanged( session, currentRevisionData, vwu );
    }
  }

  public Object getCurrentRevisionData(Session session, boolean persist) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.