001// Licensed under the MIT license. See LICENSE file in the project root for full license information.
002
003package de.bytefish.pgbulkinsert.pgsql.handlers;
004
005import java.io.DataOutputStream;
006
007public interface IValueHandler<TTargetType> extends ValueHandler {
008
009    void handle(DataOutputStream buffer, final TTargetType value);
010
011    int getLength(final TTargetType value);
012}