de.bytefish.jsqlserverbulkinsert.functional.Action2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsqlserverbulkinsert Show documentation
Show all versions of jsqlserverbulkinsert Show documentation
JSqlServerBulkInsert is a Java library for Bulk Inserts to the SQL Server.
// Copyright (c) Philipp Wagner. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
package de.bytefish.jsqlserverbulkinsert.functional;
@FunctionalInterface
public interface Action2 {
void invoke(S s, T t) throws Exception;
}