01: //$Id: BatcherFactory.java 7683 2005-07-29 19:10:20Z maxcsaucdk $
02: package org.hibernate.jdbc;
03:
04: import org.hibernate.Interceptor;
05:
06: /**
07: * Factory for <tt>Batcher</tt> instances.
08: * @author Gavin King
09: */
10: public interface BatcherFactory {
11: public Batcher createBatcher(ConnectionManager connectionManager,
12: Interceptor interceptor);
13: }
|