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

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

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

import org.hibernate.Interceptor;


/**
 * A BatcherFactory implementation which constructs Batcher instances
 * capable of actually performing batch operations.
 * 
 * @author Gavin King
 */
public class BatchingBatcherFactory implements BatcherFactory {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy