Package org.hibernate.action.internal

Examples of org.hibernate.action.internal.BulkOperationCleanupAction


    return 0;
  }

  protected void coordinateSharedCacheCleanup(SessionImplementor session) {
    final BulkOperationCleanupAction action = new BulkOperationCleanupAction( session, getCustomQuery().getQuerySpaces() );

    if ( session.isEventSource() ) {
      ( (EventSource) session ).getActionQueue().addAction( action );
    }
    else {
      action.getAfterTransactionCompletionProcess().doAfterTransactionCompletion( true, session );
    }
  }
View Full Code Here

TOP

Related Classes of org.hibernate.action.internal.BulkOperationCleanupAction

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.