All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.jdbc.NonBatchingBatcherFactory Maven / Gradle / Ivy

There is a newer version: 3.6.0.Beta2
Show newest version
//$Id: NonBatchingBatcherFactory.java 7683 2005-07-29 19:10:20Z maxcsaucdk $
package org.hibernate.jdbc;

import org.hibernate.Interceptor;


/**
 * A BatcherFactory implementation which constructs Batcher instances
 * that do not perform batch operations.
 *
 * @author Gavin King
 */
public class NonBatchingBatcherFactory implements BatcherFactory {

	public Batcher createBatcher(ConnectionManager connectionManager, Interceptor interceptor) {
		return new NonBatchingBatcher( connectionManager, interceptor );
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy