org.hibernate.jdbc.BatcherFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
//$Id: BatcherFactory.java 7683 2005-07-29 19:10:20Z maxcsaucdk $
package org.hibernate.jdbc;
import org.hibernate.Interceptor;
/**
* Factory for Batcher instances.
* @author Gavin King
*/
public interface BatcherFactory {
public Batcher createBatcher(ConnectionManager connectionManager, Interceptor interceptor);
}