001// Licensed under the MIT license. See LICENSE file in the project root for full license information.
002
003package de.bytefish.pgbulkinsert.bulkprocessor.handler;
004
005import java.util.List;
006
007public interface IBulkWriteHandler<TEntity> {
008
009    void write(List<TEntity> entities) throws Exception;
010
011}