org.hibernate.event.spi.AutoFlushEventListener Java Examples

The following examples show how to use org.hibernate.event.spi.AutoFlushEventListener. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SessionImpl.java    From lams with GNU General Public License v2.0 5 votes vote down vote up
/**
 * detect in-memory changes, determine if the changes are to tables
 * named in the query and, if so, complete execution the flush
 */
protected boolean autoFlushIfRequired(Set querySpaces) throws HibernateException {
	checkOpen();
	if ( !isTransactionInProgress() ) {
		// do not auto-flush while outside a transaction
		return false;
	}
	AutoFlushEvent event = new AutoFlushEvent( querySpaces, this );
	for ( AutoFlushEventListener listener : listeners( EventType.AUTO_FLUSH ) ) {
		listener.onAutoFlush( event );
	}
	return event.isFlushRequired();
}