diff --git a/cffu-kotlin/src/main/java/io/foldright/cffu/kotlin/CompletableFutureExtensions.kt b/cffu-kotlin/src/main/java/io/foldright/cffu/kotlin/CompletableFutureExtensions.kt index de4cafff..bd982980 100644 --- a/cffu-kotlin/src/main/java/io/foldright/cffu/kotlin/CompletableFutureExtensions.kt +++ b/cffu-kotlin/src/main/java/io/foldright/cffu/kotlin/CompletableFutureExtensions.kt @@ -461,7 +461,7 @@ fun CompletionStage.thenCombineFastFailAsync( * @see allResultsOfCompletableFuture * @see CompletableFuture.allOf */ -fun CompletionStage.allTupleOf(cf2: CompletionStage): CompletableFuture> = +fun CompletionStage.allTupleOf(cf2: CompletionStage): CompletableFuture> = CompletableFutureUtils.allTupleOf(this, cf2) /** @@ -476,7 +476,7 @@ fun CompletionStage.allTupleOf(cf2: CompletionStage): Completab * @see allResultsOfFastFailCompletableFuture * @see CompletableFutureUtils.allOfFastFail */ -fun CompletionStage.allTupleOfFastFail(cf2: CompletionStage): CompletableFuture> = +fun CompletionStage.allTupleOfFastFail(cf2: CompletionStage): CompletableFuture> = CompletableFutureUtils.allTupleOfFastFail(this, cf2) /** @@ -490,8 +490,8 @@ fun CompletionStage.allTupleOfFastFail(cf2: CompletionStage): C * @see allResultsOfCompletableFuture * @see CompletableFuture.allOf */ -fun CompletionStage.allTupleOf( - cf2: CompletionStage, cf3: CompletionStage +fun CompletionStage.allTupleOf( + cf2: CompletionStage, cf3: CompletionStage ): CompletableFuture> = CompletableFutureUtils.allTupleOf(this, cf2, cf3) @@ -507,8 +507,8 @@ fun CompletionStage.allTupleOf( * @see allResultsOfFastFailCompletableFuture * @see CompletableFutureUtils.allOfFastFail */ -fun CompletionStage.allTupleOfFastFail( - cf2: CompletionStage, cf3: CompletionStage +fun CompletionStage.allTupleOfFastFail( + cf2: CompletionStage, cf3: CompletionStage ): CompletableFuture> = CompletableFutureUtils.allTupleOfFastFail(this, cf2, cf3) @@ -523,8 +523,8 @@ fun CompletionStage.allTupleOfFastFail( * @see allResultsOfCompletableFuture * @see CompletableFuture.allOf */ -fun CompletionStage.allTupleOf( - cf2: CompletionStage, cf3: CompletionStage, cf4: CompletionStage +fun CompletionStage.allTupleOf( + cf2: CompletionStage, cf3: CompletionStage, cf4: CompletionStage ): CompletableFuture> = CompletableFutureUtils.allTupleOf(this, cf2, cf3, cf4) @@ -540,8 +540,8 @@ fun CompletionStage.allTupleOf( * @see allResultsOfFastFailCompletableFuture * @see CompletableFutureUtils.allOfFastFail */ -fun CompletionStage.allTupleOfFastFail( - cf2: CompletionStage, cf3: CompletionStage, cf4: CompletionStage +fun CompletionStage.allTupleOfFastFail( + cf2: CompletionStage, cf3: CompletionStage, cf4: CompletionStage ): CompletableFuture> = CompletableFutureUtils.allTupleOfFastFail(this, cf2, cf3, cf4) @@ -556,9 +556,9 @@ fun CompletionStage.allTupleOfFastFail( * @see allResultsOfCompletableFuture * @see CompletableFuture.allOf */ -fun CompletionStage.allTupleOf( - cf2: CompletionStage, cf3: CompletionStage, - cf4: CompletionStage, cf5: CompletionStage +fun CompletionStage.allTupleOf( + cf2: CompletionStage, cf3: CompletionStage, + cf4: CompletionStage, cf5: CompletionStage ): CompletableFuture> = CompletableFutureUtils.allTupleOf(this, cf2, cf3, cf4, cf5) @@ -574,9 +574,9 @@ fun CompletionStage.allTupleOf( * @see allResultsOfFastFailCompletableFuture * @see CompletableFutureUtils.allOfFastFail */ -fun CompletionStage.allTupleOfFastFail( - cf2: CompletionStage, cf3: CompletionStage, - cf4: CompletionStage, cf5: CompletionStage +fun CompletionStage.allTupleOfFastFail( + cf2: CompletionStage, cf3: CompletionStage, + cf4: CompletionStage, cf5: CompletionStage ): CompletableFuture> = CompletableFutureUtils.allTupleOfFastFail(this, cf2, cf3, cf4, cf5)