Examples of PostCollectionUpdateEvent


Examples of org.hibernate.event.spi.PostCollectionUpdateEvent

  private void postUpdate() {
    EventListenerGroup<PostCollectionUpdateEventListener> listenerGroup = listenerGroup( EventType.POST_COLLECTION_UPDATE );
    if ( listenerGroup.isEmpty() ) {
      return;
    }
    final PostCollectionUpdateEvent event = new PostCollectionUpdateEvent(
        getPersister(),
        getCollection(),
        eventSource()
    );
    for ( PostCollectionUpdateEventListener listener : listenerGroup.listeners() ) {
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.