001// Licensed under the MIT license. See LICENSE file in the project root for full license information.
002
003package de.bytefish.pgbulkinsert;
004
005import org.postgresql.PGConnection;
006
007import java.sql.SQLException;
008import java.util.stream.Stream;
009
010public interface IPgBulkInsert<TEntity> {
011
012    void saveAll(PGConnection connection, Stream<TEntity> entities) throws SQLException;
013
014}