Prepared state fixer

This commit is contained in:
Frank 2021-10-23 19:49:02 +02:00
parent f88506f654
commit d47321c0f7
4 changed files with 48 additions and 3 deletions

View file

@ -0,0 +1,6 @@
package ru.bclib.api.datafixer;
@FunctionalInterface
public interface PatchBiFunction<U, V, R> {
R apply(U t, V v, MigrationProfile profile) throws PatchDidiFailException;
}