diff --git a/cffu-core/src/main/java/io/foldright/cffu/Cffu.java b/cffu-core/src/main/java/io/foldright/cffu/Cffu.java index 7ca3345c..f5aa9e30 100644 --- a/cffu-core/src/main/java/io/foldright/cffu/Cffu.java +++ b/cffu-core/src/main/java/io/foldright/cffu/Cffu.java @@ -230,7 +230,7 @@ public Cffu thenRunAsync(Runnable action, Executor executor) { */ public Cffu> thenTupleMApplyFastFailAsync( Function fn1, Function fn2) { - return reset0(CompletableFutureUtils.thenTupleMApplyFastFailAsync(cf, fn1, fn2)); + return reset0(CompletableFutureUtils.thenTupleMApplyFastFailAsync(cf, fac.defaultExecutor(), fn1, fn2)); } /** @@ -248,7 +248,7 @@ public Cffu> thenTupleMApplyFastFailAsync( public Cffu> thenTupleMApplyFastFailAsync( Function fn1, Function fn2, Function fn3) { - return reset0(CompletableFutureUtils.thenTupleMApplyFastFailAsync(cf, fn1, fn2, fn3)); + return reset0(CompletableFutureUtils.thenTupleMApplyFastFailAsync(cf, fac.defaultExecutor(), fn1, fn2, fn3)); } /** @@ -266,7 +266,7 @@ public Cffu> thenTupleMApplyFastFailAsync( public Cffu> thenTupleMApplyFastFailAsync( Function fn1, Function fn2, Function fn3, Function fn4) { - return reset0(CompletableFutureUtils.thenTupleMApplyFastFailAsync(cf, fn1, fn2, fn3, fn4)); + return reset0(CompletableFutureUtils.thenTupleMApplyFastFailAsync(cf, fac.defaultExecutor(), fn1, fn2, fn3, fn4)); } /** @@ -285,7 +285,7 @@ public Cffu> thenTupleMApplyFast Function fn1, Function fn2, Function fn3, Function fn4, Function fn5) { - return reset0(CompletableFutureUtils.thenTupleMApplyFastFailAsync(cf, fn1, fn2, fn3, fn4, fn5)); + return reset0(CompletableFutureUtils.thenTupleMApplyFastFailAsync(cf, fac.defaultExecutor(), fn1, fn2, fn3, fn4, fn5)); } /** @@ -299,7 +299,7 @@ public Cffu> thenTupleMApplyFast */ public Cffu> thenTupleMApplyAsync( Function fn1, Function fn2) { - return reset0(CompletableFutureUtils.thenTupleMApplyAsync(cf, fn1, fn2)); + return reset0(CompletableFutureUtils.thenTupleMApplyAsync(cf, fac.defaultExecutor(), fn1, fn2)); } /** @@ -314,7 +314,7 @@ public Cffu> thenTupleMApplyAsync( public Cffu> thenTupleMApplyAsync( Function fn1, Function fn2, Function fn3) { - return reset0(CompletableFutureUtils.thenTupleMApplyAsync(cf, fn1, fn2, fn3)); + return reset0(CompletableFutureUtils.thenTupleMApplyAsync(cf, fac.defaultExecutor(), fn1, fn2, fn3)); } /** @@ -329,7 +329,7 @@ public Cffu> thenTupleMApplyAsync( public Cffu> thenTupleMApplyAsync( Function fn1, Function fn2, Function fn3, Function fn4) { - return reset0(CompletableFutureUtils.thenTupleMApplyAsync(cf, fn1, fn2, fn3, fn4)); + return reset0(CompletableFutureUtils.thenTupleMApplyAsync(cf, fac.defaultExecutor(), fn1, fn2, fn3, fn4)); } /** @@ -345,7 +345,7 @@ public Cffu> thenTupleMApplyAsyn Function fn1, Function fn2, Function fn3, Function fn4, Function fn5) { - return reset0(CompletableFutureUtils.thenTupleMApplyAsync(cf, fn1, fn2, fn3, fn4, fn5)); + return reset0(CompletableFutureUtils.thenTupleMApplyAsync(cf, fac.defaultExecutor(), fn1, fn2, fn3, fn4, fn5)); } // endregion