Skip to content

Commit 0cc7209

Browse files
committed
Move Func7 to the correct spot
1 parent 1156814 commit 0cc7209

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

temporal-sdk/src/main/java/io/temporal/workflow/Functions.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ public interface Func6<T1, T2, T3, T4, T5, T6, R>
4545
R apply(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
4646
}
4747

48+
@FunctionalInterface
49+
public interface Func7<T1, T2, T3, T4, T5, T6, T7, R>
50+
extends TemporalFunctionalInterfaceMarker, Serializable {
51+
R apply(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7);
52+
}
53+
4854
@FunctionalInterface
4955
public interface Proc extends TemporalFunctionalInterfaceMarker, Serializable {
5056
void apply();
@@ -82,12 +88,6 @@ public interface Proc6<T1, T2, T3, T4, T5, T6>
8288
void apply(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6);
8389
}
8490

85-
@FunctionalInterface
86-
public interface Func7<T1, T2, T3, T4, T5, T6, T7, R>
87-
extends TemporalFunctionalInterfaceMarker, Serializable {
88-
R apply(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7);
89-
}
90-
9191
@FunctionalInterface
9292
public interface Proc7<T1, T2, T3, T4, T5, T6, T7>
9393
extends TemporalFunctionalInterfaceMarker, Serializable {

0 commit comments

Comments
 (0)