Index

A B C D E F G H I J L M N O P R S T U V W _ 
All Classes and Interfaces|All Packages|Serialized Form

A

acceptEither(CompletionStage<? extends T>, Consumer<? super T>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, is executed with the corresponding result as argument to the supplied action.
acceptEitherAsync(CompletionStage<? extends T>, Consumer<? super T>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, is executed using Cffu.defaultExecutor(), with the corresponding result as argument to the supplied action.
acceptEitherAsync(CompletionStage<? extends T>, Consumer<? super T>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, is executed using the supplied executor, with the corresponding result as argument to the supplied action.
acceptEitherSuccess(CompletableFuture<? extends T>, CompletionStage<? extends T>, Consumer<? super T>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when either given stage success, is executed with the corresponding result as argument to the supplied action.
acceptEitherSuccess(CompletionStage<? extends T>, Consumer<? super T>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, is executed with the corresponding result as argument to the supplied action.
acceptEitherSuccessAsync(CompletableFuture<? extends T>, CompletionStage<? extends T>, Consumer<? super T>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when either given stage success, is executed using this CompletableFuture's default asynchronous execution facility, with the corresponding result as argument to the supplied action.
acceptEitherSuccessAsync(CompletableFuture<? extends T>, CompletionStage<? extends T>, Consumer<? super T>, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied action.
acceptEitherSuccessAsync(CompletionStage<? extends T>, Consumer<? super T>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, is executed using Cffu.defaultExecutor(), with the corresponding result as argument to the supplied action.
acceptEitherSuccessAsync(CompletionStage<? extends T>, Consumer<? super T>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, is executed using the supplied executor, with the corresponding result as argument to the supplied action.
allFastFailOf(CompletionStage<?>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is successful when all the given stages success; If any of the given stages complete exceptionally, then the returned Cffu also does so *without* waiting other incomplete given stages, with a CompletionException holding this exception as its cause.
allFastFailOf(CompletionStage<?>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is successful when all the given stages success; If any of the given stages complete exceptionally, then the returned CompletableFuture also does so *without* waiting other incomplete given stages, with a CompletionException holding this exception as its cause.
allOf(CompletionStage<?>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is completed when all the given stages complete; If any of the given stages complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause.
allOf(CompletionStage<?>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is completed when all the given stages complete; If any of the given stages complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.
allResultsFastFailOf(CompletionStage<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is successful with the results in the same order of the given stages arguments when all the given stages success; If any of the given stages complete exceptionally, then the returned Cffu also does so *without* waiting other incomplete given stages, with a CompletionException holding this exception as its cause.
allResultsFastFailOf(CompletionStage<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is successful with the results in the same order of the given stages arguments when all the given stages success; If any of the given stages complete exceptionally, then the returned CompletableFuture also does so *without* waiting other incomplete given stages, with a CompletionException holding this exception as its cause.
allResultsOf(CompletionStage<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu with the results in the same order of the given stages arguments, the new Cffu is completed when all the given stages complete; If any of the given stages complete exceptionally, then the returned Cffu also does so, with a CompletionException holding this exception as its cause.
allResultsOf(CompletionStage<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture with the results in the same order of the given stages arguments, the new CompletableFuture is completed when all the given stages complete; If any of the given stages complete exceptionally, then the returned CompletableFuture also does so, with a CompletionException holding this exception as its cause.
allSuccessResultsOf(T, CompletionStage<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is successful with the results in the same order of the given stages arguments when all the given stages completed; If the given stage complete exceptionally, treat it successful with value valueIfFailed.
allSuccessResultsOf(T, CompletionStage<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is successful with the results in the same order of the given stages arguments when all the given stages completed; If the given stage complete exceptionally, treat it successful with value valueIfFailed.
allSuccessTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is successful with the results of the given stages arguments when all the given stages completed; If the given stage complete exceptionally, treat it successful with value valueIfFailed.
allSuccessTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is successful with the results of the given stages arguments when all the given stages completed; If the given stage complete exceptionally, treat it successful with value valueIfFailed.
allSuccessTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is successful with the results of the given stages arguments when all the given stages completed; If the given stage complete exceptionally, treat it successful with value valueIfFailed.
allSuccessTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is successful with the results of the given stages arguments when all the given stages completed; If the given stage complete exceptionally, treat it successful with value valueIfFailed.
allSuccessTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is successful with the results of the given stages arguments when all the given stages completed; If the given stage complete exceptionally, treat it successful with value valueIfFailed.
allSuccessTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is successful with the results of the given stages arguments when all the given stages completed; If the given stage complete exceptionally, treat it successful with value valueIfFailed.
allSuccessTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>, CompletionStage<? extends T5>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is successful with the results of the given stages arguments when all the given stages completed; If the given stage complete exceptionally, treat it successful with value valueIfFailed.
allSuccessTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>, CompletionStage<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is successful with the results of the given stages arguments when all the given stages completed; If the given stage complete exceptionally, treat it successful with value valueIfFailed.
allTupleFastFailOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is successful when the given two stages success.
allTupleFastFailOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is successful when the given stages success.
allTupleFastFailOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is successful when the given three stages success.
allTupleFastFailOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is successful when the given stages success.
allTupleFastFailOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is successful when the given four stages success.
allTupleFastFailOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is successful when the given stages success.
allTupleFastFailOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>, CompletionStage<? extends T5>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is successful when the given five stages success.
allTupleFastFailOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>, CompletionStage<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is successful when the given stages success.
allTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is completed when the given two stages complete.
allTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is completed when the given stages complete.
allTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is completed when the given three stages complete.
allTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is completed when the given stages complete.
allTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is completed when the given four stages complete.
allTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is completed when the given stages complete.
allTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>, CompletionStage<? extends T5>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is completed when the given five stages complete.
allTupleOf(CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>, CompletionStage<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is completed when the given stages complete.
anyOf(CompletionStage<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is completed when any of the given stages complete, with the same result.
Otherwise, if it completed exceptionally, the returned Cffu also does so, with a CompletionException holding this exception as its cause.
If no stages are provided, returns an incomplete Cffu.
anyOf(CompletionStage<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is completed when any of the given stages complete, with the same result.
anySuccessOf(CompletionStage<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is successful when any of the given stages success, with the same result.
anySuccessOf(CompletionStage<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is successful when any of the given stages success, with the same result.
applyToEither(CompletionStage<? extends T>, Function<? super T, U>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, is executed with the corresponding result as argument to the supplied function.
applyToEitherAsync(CompletionStage<? extends T>, Function<? super T, U>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, is executed using Cffu.defaultExecutor(), with the corresponding result as argument to the supplied function.
applyToEitherAsync(CompletionStage<? extends T>, Function<? super T, U>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, is executed using the supplied executor, with the corresponding result as argument to the supplied function.
applyToEitherSuccess(CompletableFuture<? extends T>, CompletionStage<? extends T>, Function<? super T, ? extends U>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when either given stage success, is executed with the corresponding result as argument to the supplied function.
applyToEitherSuccess(CompletionStage<? extends T>, Function<? super T, U>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, is executed with the corresponding result as argument to the supplied function.
applyToEitherSuccessAsync(CompletableFuture<? extends T>, CompletionStage<? extends T>, Function<? super T, ? extends U>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when either given stage success, is executed using this CompletableFuture's default asynchronous execution facility, with the corresponding result as argument to the supplied function.
applyToEitherSuccessAsync(CompletableFuture<? extends T>, CompletionStage<? extends T>, Function<? super T, ? extends U>, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when either given stage success, is executed using the supplied executor, with the corresponding result as argument to the supplied function.
applyToEitherSuccessAsync(CompletionStage<? extends T>, Function<? super T, U>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, is executed using Cffu.defaultExecutor(), with the corresponding result as argument to the supplied function.
applyToEitherSuccessAsync(CompletionStage<? extends T>, Function<? super T, U>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, is executed using the supplied executor, with the corresponding result as argument to the supplied function.

B

build() - Method in class io.foldright.cffu.CffuFactoryBuilder
Builds the cffu factory.
builder(Executor) - Static method in class io.foldright.cffu.CffuFactory
Returns a CffuFactoryBuilder with defaultExecutor setting.

C

cancel(boolean) - Method in class io.foldright.cffu.Cffu
If not already completed, completes this Cffu with a CancellationException.
CANCELLED - Enum constant in enum io.foldright.cffu.CffuState
The task was cancelled.
catching(C, Class<X>, Function<? super X, ? extends T>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletionStage that, when given stage completes exceptionally with the given exceptionType, is executed with given stage's exception as the argument to the supplied function.
catching(Class<X>, Function<? super X, ? extends T>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when given stage completes exceptionally with the given exceptionType, is executed with given stage's exception as the argument to the supplied function.
catchingAsync(C, Class<X>, Function<? super X, ? extends T>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletionStage that, when given stage completes exceptionally with the given exceptionType, is executed with given stage's exception as the argument to the supplied function, using the given stage's default asynchronous execution facility.
catchingAsync(C, Class<X>, Function<? super X, ? extends T>, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletionStage that, when given stage completes exceptionally with the given exceptionType, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor.
catchingAsync(Class<X>, Function<? super X, ? extends T>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when given stage completes exceptionally with the given exceptionType, is executed with given stage's exception as the argument to the supplied function, using the given stage's default asynchronous execution facility.
catchingAsync(Class<X>, Function<? super X, ? extends T>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when given stage completes exceptionally with the given exceptionType, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor.
catchingCompose(C, Class<X>, Function<? super X, ? extends CompletionStage<T>>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletionStage that, when given stage completes exceptionally with the given exceptionType, is composed using the results of the supplied function applied to given stage's exception.
catchingCompose(Class<X>, Function<? super X, ? extends CompletionStage<T>>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when given stage completes exceptionally with the given exceptionType, is composed using the results of the supplied function applied to given stage's exception.
catchingComposeAsync(C, Class<X>, Function<? super X, ? extends CompletionStage<T>>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletionStage that, when given stage completes exceptionally with the given exceptionType, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.
catchingComposeAsync(C, Class<X>, Function<? super X, ? extends CompletionStage<T>>, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletionStage that, when given stage completes exceptionally with the given exceptionType, is composed using the results of the supplied function applied to given's exception, using the supplied Executor.
catchingComposeAsync(Class<X>, Function<? super X, ? extends CompletionStage<T>>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when given stage completes exceptionally with the given exceptionType, is composed using the results of the supplied function applied to given stage's exception, using given stage's default asynchronous execution facility.
catchingComposeAsync(Class<X>, Function<? super X, ? extends CompletionStage<T>>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when given stage completes exceptionally with the given exceptionType, is composed using the results of the supplied function applied to given's exception, using the supplied Executor.
Cffu<T> - Class in io.foldright.cffu
This class Cffu is the equivalent class to CompletableFuture, contains the equivalent instance methods of CompletionStage and CompletableFuture.
cffuCompleteOnTimeout(C, T, long, TimeUnit) - Static method in class io.foldright.cffu.CompletableFutureUtils
Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.
cffuCompleteOnTimeout(C, T, Executor, long, TimeUnit) - Static method in class io.foldright.cffu.CompletableFutureUtils
Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.
cffuFactory() - Method in class io.foldright.cffu.Cffu
Returns the CffuFactory of this Cffu.
CffuFactory - Class in io.foldright.cffu
This class CffuFactory is equivalent to CompletableFuture, contains the static (factory) methods of CompletableFuture.
CffuFactoryBuilder - Class in io.foldright.cffu
cffuListToArray(List<Cffu<T>>) - Static method in class io.foldright.cffu.CffuFactory
Convert Cffu list to Cffu array.
cffuOrTimeout(C, long, TimeUnit) - Static method in class io.foldright.cffu.CompletableFutureUtils
Exceptionally completes given CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.
cffuOrTimeout(C, Executor, long, TimeUnit) - Static method in class io.foldright.cffu.CompletableFutureUtils
Exceptionally completes given CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.
cffuState() - Method in class io.foldright.cffu.Cffu
Returns the computation state(CffuState), this method is equivalent to CompletableFuture.state() with java version compatibility logic, so you can invoke in old java 18-.
CffuState - Enum in io.foldright.cffu
This class is the same as Future.State, existed for java version compatibility.
CffuTtlExecutorWrapperProvider - Class in io.foldright.cffu.ttl
Cffu executor wrapper provider(ExecutorWrapperProvider) SPI implementation for 📌 TransmittableThreadLocal (TTL).
CffuTtlExecutorWrapperProvider() - Constructor for class io.foldright.cffu.ttl.CffuTtlExecutorWrapperProvider
 
cffuUnwrap() - Method in class io.foldright.cffu.Cffu
Returns the underlying CompletableFuture.
completableFutureListToArray(List<CompletableFuture<T>>) - Static method in class io.foldright.cffu.CompletableFutureUtils
A convenient util method for converting input CompletableFuture list to CompletableFuture array.
CompletableFutureUtils - Class in io.foldright.cffu
This class contains the new enhanced and backport methods for CompletableFuture.
complete(T) - Method in class io.foldright.cffu.Cffu
If not already completed, sets the value returned by Cffu.get() and related methods to the given value.
completeAsync(C, Supplier<? extends T>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the default executor.
completeAsync(C, Supplier<? extends T>, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Completes given CompletableFuture with the result of the given Supplier function invoked from an asynchronous task using the given executor.
completeAsync(Supplier<? extends T>) - Method in class io.foldright.cffu.Cffu
Completes this Cffu with the result of the given Supplier function invoked from an asynchronous task using Cffu.defaultExecutor().
completeAsync(Supplier<? extends T>, Executor) - Method in class io.foldright.cffu.Cffu
Completes this Cffu with the result of the given Supplier function invoked from an asynchronous task using the given executor.
completedFuture(T) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is already completed with the given value.
completedStage(T) - Method in class io.foldright.cffu.CffuFactory
Returns a new CompletionStage that is already completed with the given value and supports only those methods in interface CompletionStage.
completedStage(T) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletionStage that is already completed with the given value and supports only those methods in interface CompletionStage.
completeExceptionally(Throwable) - Method in class io.foldright.cffu.Cffu
If not already completed, causes invocations of Cffu.get() and related methods to throw the given exception.
completeExceptionallyAsync(C, Supplier<? extends Throwable>) - Static method in class io.foldright.cffu.CompletableFutureUtils
If not already completed, completes given CompletableFuture with the exception result of the given Supplier function invoked from an asynchronous task using the default executor.
completeExceptionallyAsync(C, Supplier<? extends Throwable>, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
If not already completed, completes given CompletableFuture with the exception result of the given Supplier function invoked from an asynchronous task using the given executor.
completeExceptionallyAsync(Supplier<? extends Throwable>) - Method in class io.foldright.cffu.Cffu
If not already completed, completes this Cffu with the exception result of the given Supplier function invoked from an asynchronous task using the default executor.
completeExceptionallyAsync(Supplier<? extends Throwable>, Executor) - Method in class io.foldright.cffu.Cffu
If not already completed, completes this Cffu with the exception result of the given Supplier function invoked from an asynchronous task using the given executor.
completeOnTimeout(C, T, long, TimeUnit) - Static method in class io.foldright.cffu.CompletableFutureUtils
Completes given CompletableFuture with the given value if not otherwise completed before the given timeout.
completeOnTimeout(T, long, TimeUnit) - Method in class io.foldright.cffu.Cffu
Completes this Cffu with the given value if not otherwise completed before the given timeout.
completeOnTimeout(T, Executor, long, TimeUnit) - Method in class io.foldright.cffu.Cffu
Completes this Cffu with the given value if not otherwise completed before the given timeout.
copy() - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that is completed normally with the same value as this Cffu when it completes normally.
copy(CompletableFuture<T>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is completed normally with the same value as this CompletableFuture when it completes normally.

D

defaultExecutor() - Method in class io.foldright.cffu.Cffu
Returns the default Executor used for async methods that do not specify an Executor.
defaultExecutor() - Method in class io.foldright.cffu.CffuFactory
Returns the default Executor used for async methods that do not specify an Executor.
defaultExecutor() - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns the default Executor used for async methods that do not specify an Executor.
delayedExecutor(long, TimeUnit) - Method in class io.foldright.cffu.CffuFactory
Returns a new Executor that submits a task to the default executor after the given delay (or no delay if non-positive).
delayedExecutor(long, TimeUnit) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new Executor that submits a task to the default executor after the given delay (or no delay if non-positive).
delayedExecutor(long, TimeUnit, Executor) - Method in class io.foldright.cffu.CffuFactory
Returns a new Executor that submits a task to the given base executor after the given delay (or no delay if non-positive).
delayedExecutor(long, TimeUnit, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new Executor that submits a task to the given base executor after the given delay (or no delay if non-positive).

E

equals(Object) - Method in class io.foldright.cffu.tuple.Tuple2
 
equals(Object) - Method in class io.foldright.cffu.tuple.Tuple3
 
equals(Object) - Method in class io.foldright.cffu.tuple.Tuple4
 
equals(Object) - Method in class io.foldright.cffu.tuple.Tuple5
 
exceptionally(Function<Throwable, ? extends T>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes exceptionally, is executed with this stage's exception as the argument to the supplied function.
exceptionallyAsync(C, Function<Throwable, ? extends T>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using given stage's default asynchronous execution facility.
exceptionallyAsync(C, Function<Throwable, ? extends T>, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletionStage that, when given stage completes exceptionally, is executed with given stage's exception as the argument to the supplied function, using the supplied Executor.
exceptionallyAsync(Function<Throwable, ? extends T>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes exceptionally, is executed with this stage's exception as the argument to the supplied function, using Cffu.defaultExecutor().
exceptionallyAsync(Function<Throwable, ? extends T>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes exceptionally, is executed with this stage's exception as the argument to the supplied function, using the supplied Executor.
exceptionallyCompose(C, Function<Throwable, ? extends CompletionStage<T>>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when given CompletableFuture completes exceptionally, is composed using the results of the supplied function applied to given stage's exception.
exceptionallyCompose(Function<Throwable, ? extends CompletionStage<T>>) - Method in class io.foldright.cffu.Cffu
Returns a new CompletionStage that, when this stage completes exceptionally, is composed using the results of the supplied function applied to this stage's exception.
exceptionallyComposeAsync(C, Function<Throwable, ? extends CompletionStage<T>>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when given CompletableFuture completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using given CompletableFuture's default asynchronous execution facility.
exceptionallyComposeAsync(C, Function<Throwable, ? extends CompletionStage<T>>, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when given CompletableFuture completes exceptionally, is composed using the results of the supplied function applied to given stage's exception, using the supplied Executor.
exceptionallyComposeAsync(Function<Throwable, ? extends CompletionStage<T>>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes exceptionally, is composed using the results of the supplied function applied to this stage's exception, using Cffu.defaultExecutor().
exceptionallyComposeAsync(Function<Throwable, ? extends CompletionStage<T>>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes exceptionally, is composed using the results of the supplied function applied to this stage's exception, using the supplied Executor.
exceptionNow() - Method in class io.foldright.cffu.Cffu
Returns the exception thrown by the task, without waiting.
exceptionNow(Future<?>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns the exception thrown by the task, without waiting.
ExecutorWrapperProvider - Interface in io.foldright.cffu.spi
An SPI for wrapping the executor when CffuFactoryBuilder build CffuFactory.

F

FAILED - Enum constant in enum io.foldright.cffu.CffuState
The task completed with an exception.
failedFuture(Throwable) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is already completed exceptionally with the given exception.
failedFuture(Throwable) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is already completed exceptionally with the given exception.
failedStage(Throwable) - Method in class io.foldright.cffu.CffuFactory
Returns a new CompletionStage that is already completed exceptionally with the given exception and supports only those methods in interface CompletionStage.
failedStage(Throwable) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletionStage that is already completed exceptionally with the given exception and supports only those methods in interface CompletionStage.
forbidObtrudeMethods() - Method in class io.foldright.cffu.Cffu
Returns forbidObtrudeMethods or not.
forbidObtrudeMethods() - Method in class io.foldright.cffu.CffuFactory
Returns forbidObtrudeMethods or not.
forbidObtrudeMethods(boolean) - Method in class io.foldright.cffu.CffuFactoryBuilder
Sets forbidObtrudeMethods or not.

G

get() - Method in class io.foldright.cffu.Cffu
Waits if necessary for the computation to complete, and then retrieves its result.
get(long, TimeUnit) - Method in class io.foldright.cffu.Cffu
Waits if necessary for at most the given time for the computation to complete, and then retrieves its result, if available.
getNow(T) - Method in class io.foldright.cffu.Cffu
Returns the result value (or throws any encountered exception) if completed, else returns the given valueIfAbsent.
getNumberOfDependents() - Method in class io.foldright.cffu.Cffu
Returns the estimated number of Cffus whose completions are awaiting completion of this Cffu.
getSuccessNow(CompletableFuture<? extends T>, T) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns the result value if the given stage is completed successfully, else returns the given valueIfNotSuccess.
getSuccessNow(T) - Method in class io.foldright.cffu.Cffu
Returns the result value if completed successfully, else returns the given valueIfNotSuccess.

H

handle(BiFunction<? super T, Throwable, ? extends U>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this cffu completes either normally or exceptionally, is executed with this cffu's result and exception as arguments to the supplied function.
handleAsync(BiFunction<? super T, Throwable, ? extends U>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this cffu completes either normally or exceptionally, is executed using Cffu.defaultExecutor(), with this cffu's result and exception as arguments to the supplied function.
handleAsync(BiFunction<? super T, Throwable, ? extends U>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this cffu completes either normally or exceptionally, is executed using the supplied executor, with this cffu's result and exception as arguments to the supplied function.
hashCode() - Method in class io.foldright.cffu.tuple.Tuple2
 
hashCode() - Method in class io.foldright.cffu.tuple.Tuple3
 
hashCode() - Method in class io.foldright.cffu.tuple.Tuple4
 
hashCode() - Method in class io.foldright.cffu.tuple.Tuple5
 

I

io.foldright.cffu - package io.foldright.cffu
A tiny sidekick library for CompletableFuture to improve user experience and reduce misuse.
io.foldright.cffu.spi - package io.foldright.cffu.spi
Cffu SPI interfaces.
io.foldright.cffu.ttl - package io.foldright.cffu.ttl
Cffu executor wrapper provider(ExecutorWrapperProvider) SPI implementation for 📌 TransmittableThreadLocal (TTL).
io.foldright.cffu.tuple - package io.foldright.cffu.tuple
the Tuple util classes for Cffu use.
isCancelled() - Method in class io.foldright.cffu.Cffu
Returns true if this Cffu was cancelled before it completed normally.
isCompletedExceptionally() - Method in class io.foldright.cffu.Cffu
Returns true if this Cffu completed exceptionally, in any way.
isDone() - Method in class io.foldright.cffu.Cffu
Returns true if this task completed.
isMinimalStage() - Method in class io.foldright.cffu.Cffu
Returns whether is a minimal stage or not.

J

join() - Method in class io.foldright.cffu.Cffu
Returns the result value when complete, or throws an (unchecked) exception if completed exceptionally.
join(long, TimeUnit) - Method in class io.foldright.cffu.Cffu
Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.
join(CompletableFuture<T>, long, TimeUnit) - Static method in class io.foldright.cffu.CompletableFutureUtils
Waits if necessary for at most the given time for the computation to complete, and then retrieves its result value when complete, or throws an (unchecked) exception if completed exceptionally.

L

ListenableFutureUtils - Class in io.foldright.cffu
Integration with guava ListenableFuture.

M

minimalCompletionStage() - Method in class io.foldright.cffu.Cffu
Returns a new CompletionStage that is completed normally with the same value as this Cffu when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage.
minimalCompletionStage(CompletableFuture<T>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletionStage that is completed normally with the same value as given CompletableFuture when it completes normally, and cannot be independently completed or otherwise used in ways not defined by the methods of interface CompletionStage.
mostSuccessResultsOf(T, long, TimeUnit, CompletionStage<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu with the most results in the same order of the given stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessResultsOf(T, long, TimeUnit, CompletionStage<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture with the most results in the same order of the given stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessResultsOf(T, Executor, long, TimeUnit, CompletionStage<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture with the most results in the same order of the given stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessTupleOf(long, TimeUnit, CompletionStage<? extends T1>, CompletionStage<? extends T2>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu with the most results in the same order of the given two stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessTupleOf(long, TimeUnit, CompletionStage<? extends T1>, CompletionStage<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture with the most results in the same order of the given stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessTupleOf(long, TimeUnit, CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu with the most results in the same order of the given three stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessTupleOf(long, TimeUnit, CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture with the most results in the same order of the given stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessTupleOf(long, TimeUnit, CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu with the most results in the same order of the given four stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessTupleOf(long, TimeUnit, CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture with the most results in the same order of the given stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessTupleOf(long, TimeUnit, CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>, CompletionStage<? extends T5>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu with the most results in the same order of the given five stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessTupleOf(long, TimeUnit, CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>, CompletionStage<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture with the most results in the same order of the given stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessTupleOf(Executor, long, TimeUnit, CompletionStage<? extends T1>, CompletionStage<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture with the most results in the same order of the given stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessTupleOf(Executor, long, TimeUnit, CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture with the most results in the same order of the given stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessTupleOf(Executor, long, TimeUnit, CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture with the most results in the same order of the given stages arguments in the given time(timeout, aka as many results as possible in the given time).
mostSuccessTupleOf(Executor, long, TimeUnit, CompletionStage<? extends T1>, CompletionStage<? extends T2>, CompletionStage<? extends T3>, CompletionStage<? extends T4>, CompletionStage<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture with the most results in the same order of the given stages arguments in the given time(timeout, aka as many results as possible in the given time).
mRunAnyAsync(Runnable...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed when any tasks running in the Cffu's default asynchronous execution facility.
mRunAnyAsync(Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed when any tasks running in the CompletableFuture's default asynchronous execution facility.
mRunAnyAsync(Executor, Runnable...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed when any tasks running in the given executor complete.
mRunAnyAsync(Executor, Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed when any tasks running in the given executor complete.
mRunAnySuccessAsync(Runnable...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously successful when any tasks running in the Cffu's default asynchronous execution facility success.
mRunAnySuccessAsync(Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously successful when any tasks running in the CompletableFuture's default asynchronous execution facility success.
mRunAnySuccessAsync(Executor, Runnable...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed when any tasks running in the Cffu's default asynchronous execution facility.
mRunAnySuccessAsync(Executor, Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously successful when any tasks running in the given executor success.
mRunAsync(Runnable...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility after runs the given actions.
mRunAsync(Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility after runs the given actions.
mRunAsync(Executor, Runnable...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor after runs the given actions.
mRunAsync(Executor, Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor after runs the given actions.
mRunFastFailAsync(Runnable...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility after runs the given actions.
mRunFastFailAsync(Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility after runs the given actions.
mRunFastFailAsync(Executor, Runnable...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor after runs the given actions.
mRunFastFailAsync(Executor, Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor after runs the given actions.
mSupplyAllSuccessAsync(T, Executor, Supplier<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the successfully values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
mSupplyAllSuccessAsync(T, Executor, Supplier<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the successfully values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
mSupplyAllSuccessAsync(T, Supplier<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility with the successful values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
mSupplyAllSuccessAsync(T, Supplier<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the successful values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
mSupplyAnyAsync(Executor, Supplier<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is completed when any of tasks running in the given Executor by calling the given Suppliers complete, with the same result.
mSupplyAnyAsync(Executor, Supplier<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is completed when any of tasks running in the given Executor by calling the given Suppliers complete, with the same result.
mSupplyAnyAsync(Supplier<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is completed when any of tasks running in the Cffu's default asynchronous execution facility by calling the given Suppliers complete, with the same result.
mSupplyAnyAsync(Supplier<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is completed when any of tasks running in the CompletableFuture's default asynchronous execution facility by calling the given Suppliers complete, with the same result.
mSupplyAnySuccessAsync(Executor, Supplier<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously successful when any of tasks running in the given executor by calling the given Suppliers success, with the same result.
mSupplyAnySuccessAsync(Executor, Supplier<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously successful when any of tasks running in the given executor by calling the given Suppliers success, with the same result.
mSupplyAnySuccessAsync(Supplier<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously successful when any of tasks running in the Cffu's default asynchronous execution facility by calling the given Suppliers success, with the same result.
mSupplyAnySuccessAsync(Supplier<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously successful when any of tasks running in the CompletableFuture's default asynchronous execution facility by calling the given Suppliers success, with the same result.
mSupplyAsync(Executor, Supplier<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
mSupplyAsync(Executor, Supplier<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
mSupplyAsync(Supplier<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
mSupplyAsync(Supplier<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
mSupplyFastFailAsync(Executor, Supplier<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
mSupplyFastFailAsync(Executor, Supplier<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
mSupplyFastFailAsync(Supplier<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
mSupplyFastFailAsync(Supplier<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
mSupplyMostSuccessAsync(T, long, TimeUnit, Supplier<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
mSupplyMostSuccessAsync(T, long, TimeUnit, Supplier<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
mSupplyMostSuccessAsync(T, Executor, long, TimeUnit, Supplier<? extends T>...) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
mSupplyMostSuccessAsync(T, Executor, long, TimeUnit, Supplier<? extends T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.

N

newIncompleteCffu() - Method in class io.foldright.cffu.CffuFactory
Return an incomplete Cffu, equivalent to CompletableFuture() constructor.
newIncompleteFuture() - Method in class io.foldright.cffu.Cffu
Returns a new incomplete Cffu with CompletableFuture of the type to be returned by a CompletionStage method.
newIncompleteFuture(CompletableFuture<?>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new incomplete CompletableFuture of the type to be returned by a CompletionStage method.
NoCfsProvidedException - Exception Class in io.foldright.cffu
Exception indicates that NO cfs(Cffu / CompletableFuture) are provided for methods require cf arguments.
NoCfsProvidedException() - Constructor for exception class io.foldright.cffu.NoCfsProvidedException
 

O

obtrudeException(Throwable) - Method in class io.foldright.cffu.Cffu
Forcibly causes subsequent invocations of method Cffu.get() and related methods to throw the given exception, whether already completed or not.
obtrudeValue(T) - Method in class io.foldright.cffu.Cffu
Forcibly sets or resets the value subsequently returned by method Cffu.get() and related methods, whether already completed or not.
of(T1, T2) - Static method in class io.foldright.cffu.tuple.Tuple2
 
of(T1, T2, T3) - Static method in class io.foldright.cffu.tuple.Tuple3
 
of(T1, T2, T3, T4) - Static method in class io.foldright.cffu.tuple.Tuple4
 
of(T1, T2, T3, T4, T5) - Static method in class io.foldright.cffu.tuple.Tuple5
 
orTimeout(long, TimeUnit) - Method in class io.foldright.cffu.Cffu
Exceptionally completes this Cffu with a TimeoutException if not otherwise completed before the given timeout.
orTimeout(C, long, TimeUnit) - Static method in class io.foldright.cffu.CompletableFutureUtils
Exceptionally completes given CompletableFuture with a TimeoutException if not otherwise completed before the given timeout.
orTimeout(Executor, long, TimeUnit) - Method in class io.foldright.cffu.Cffu
Exceptionally completes this Cffu with a TimeoutException if not otherwise completed before the given timeout.

P

peek(C, BiConsumer<? super T, ? super Throwable>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Peeks the result by executing the given action when given stage completes, returns the given stage.
peek(BiConsumer<? super T, ? super Throwable>) - Method in class io.foldright.cffu.Cffu
Peeks the result by executing the given action when this cffu completes, returns this cffu.
peekAsync(C, BiConsumer<? super T, ? super Throwable>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Peeks the result by executing the given action when given stage completes, executes the given action using given stage's default asynchronous execution facility, returns the given stage.
peekAsync(C, BiConsumer<? super T, ? super Throwable>, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Peeks the result by executing the given action when given stage completes, executes the given action using the supplied Executor, returns the given stage.
peekAsync(BiConsumer<? super T, ? super Throwable>) - Method in class io.foldright.cffu.Cffu
Peeks the result by executing the given action when this cffu completes, executes the given action using Cffu.defaultExecutor(), returns this cffu.
peekAsync(BiConsumer<? super T, ? super Throwable>, Executor) - Method in class io.foldright.cffu.Cffu
Peeks the result by executing the given action when this cffu completes, that executes the given action using the supplied Executor when this cffu completes, returns this cffu.

R

resetCffuFactory(CffuFactory) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu with the given CffuFactory(contained configuration).
resetDefaultExecutor(Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu with the given defaultExecutor.
resetDefaultExecutor(Executor) - Method in class io.foldright.cffu.CffuFactory
Returns a new CffuFactory from this CffuFactory that reset the defaultExecutor.
resultNow() - Method in class io.foldright.cffu.Cffu
Returns the computed result, without waiting.
resultNow(Future<T>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns the computed result, without waiting.
runAfterBoth(CompletionStage<?>, Runnable) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, executes the given action.
runAfterBothAsync(CompletionStage<?>, Runnable) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, executes the given action using Cffu.defaultExecutor().
runAfterBothAsync(CompletionStage<?>, Runnable, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, executes the given action using the supplied executor.
runAfterBothFastFail(CompletableFuture<?>, CompletionStage<?>, Runnable) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action.
runAfterBothFastFail(CompletionStage<?>, Runnable) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, executes the given action.
runAfterBothFastFailAsync(CompletableFuture<?>, CompletionStage<?>, Runnable) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using CompletableFuture's default asynchronous execution facility.
runAfterBothFastFailAsync(CompletableFuture<?>, CompletionStage<?>, Runnable, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when two given stages both complete normally, executes the given action using the supplied executor.
runAfterBothFastFailAsync(CompletionStage<?>, Runnable) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, executes the given action using Cffu.defaultExecutor().
runAfterBothFastFailAsync(CompletionStage<?>, Runnable, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, executes the given action using the supplied executor.
runAfterEither(CompletionStage<?>, Runnable) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, executes the given action.
runAfterEitherAsync(CompletionStage<?>, Runnable) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, executes the given action using Cffu.defaultExecutor().
runAfterEitherAsync(CompletionStage<?>, Runnable, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, executes the given action using the supplied executor.
runAfterEitherSuccess(CompletableFuture<?>, CompletionStage<?>, Runnable) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when either given stage success, executes the given action.
runAfterEitherSuccess(CompletionStage<?>, Runnable) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, executes the given action.
runAfterEitherSuccessAsync(CompletableFuture<?>, CompletionStage<?>, Runnable) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when either given stage success, executes the given action using CompletableFuture's default asynchronous execution facility.
runAfterEitherSuccessAsync(CompletableFuture<?>, CompletionStage<?>, Runnable, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when either given stage success, executes the given action using the supplied executor.
runAfterEitherSuccessAsync(CompletionStage<?>, Runnable) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, executes the given action using Cffu.defaultExecutor().
runAfterEitherSuccessAsync(CompletionStage<?>, Runnable, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when either this or the other given stage complete normally, executes the given action using the supplied executor.
runAsync(Runnable) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by a task running in the CffuFactory.defaultExecutor() after it runs the given action.
runAsync(Runnable, Executor) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by a task running in the given executor after it runs the given action.
RUNNING - Enum constant in enum io.foldright.cffu.CffuState
The task has not completed.

S

state() - Method in class io.foldright.cffu.Cffu
Returns the computation state, this method contains NO java version compatibility logic, if you need this function in old java 18-, use Cffu.cffuState() instead.
state(Future<?>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns the computation state(CffuState), this method is equivalent to CompletableFuture.state() with java version compatibility logic, so you can invoke in old java 18-.
SUCCESS - Enum constant in enum io.foldright.cffu.CffuState
The task completed with a result.
supplyAsync(Supplier<T>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by a task running in the CffuFactory.defaultExecutor() with the value obtained by calling the given Supplier.
supplyAsync(Supplier<T>, Executor) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by a task running in the given executor with the value obtained by calling the given Supplier.

T

thenAccept(Consumer<? super T>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes normally, is executed with this stage's result as the argument to the supplied action.
thenAcceptAsync(Consumer<? super T>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes normally, is executed using Cffu.defaultExecutor(), with this stage's result as the argument to the supplied action.
thenAcceptAsync(Consumer<? super T>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes normally, is executed using the supplied Executor, with this stage's result as the argument to the supplied action.
thenAcceptBoth(CompletionStage<? extends U>, BiConsumer<? super T, ? super U>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, is executed with the two results as arguments to the supplied action.
thenAcceptBothAsync(CompletionStage<? extends U>, BiConsumer<? super T, ? super U>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, is executed using Cffu.defaultExecutor(), with the two results as arguments to the supplied action.
thenAcceptBothAsync(CompletionStage<? extends U>, BiConsumer<? super T, ? super U>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied action.
thenAcceptBothFastFail(CompletableFuture<? extends T>, CompletionStage<? extends U>, BiConsumer<? super T, ? super U>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied action.
thenAcceptBothFastFail(CompletionStage<? extends U>, BiConsumer<? super T, ? super U>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, is executed with the two results as arguments to the supplied action.
thenAcceptBothFastFailAsync(CompletableFuture<? extends T>, CompletionStage<? extends U>, BiConsumer<? super T, ? super U>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied action.
thenAcceptBothFastFailAsync(CompletableFuture<? extends T>, CompletionStage<? extends U>, BiConsumer<? super T, ? super U>, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied action.
thenAcceptBothFastFailAsync(CompletionStage<? extends U>, BiConsumer<? super T, ? super U>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, is executed using Cffu.defaultExecutor(), with the two results as arguments to the supplied action.
thenAcceptBothFastFailAsync(CompletionStage<? extends U>, BiConsumer<? super T, ? super U>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied action.
thenApply(Function<? super T, ? extends U>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes normally, is executed with this stage's result as the argument to the supplied function.
thenApplyAsync(Function<? super T, ? extends U>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes normally, is executed using Cffu.defaultExecutor(), with this stage's result as the argument to the supplied function.
thenApplyAsync(Function<? super T, ? extends U>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes normally, is executed using the supplied Executor, with this stage's result as the argument to the supplied function.
thenCombine(CompletionStage<? extends U>, BiFunction<? super T, ? super U, ? extends V>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, is executed with the two results as arguments to the supplied function.
thenCombineAsync(CompletionStage<? extends U>, BiFunction<? super T, ? super U, ? extends V>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, is executed using Cffu.defaultExecutor(), with the two results as arguments to the supplied function.
thenCombineAsync(CompletionStage<? extends U>, BiFunction<? super T, ? super U, ? extends V>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied function.
thenCombineFastFail(CompletableFuture<? extends T>, CompletionStage<? extends U>, BiFunction<? super T, ? super U, ? extends V>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when tow given stage both complete normally, is executed with the two results as arguments to the supplied function.
thenCombineFastFail(CompletionStage<? extends U>, BiFunction<? super T, ? super U, ? extends V>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, is executed with the two results as arguments to the supplied function.
thenCombineFastFailAsync(CompletableFuture<? extends T>, CompletionStage<? extends U>, BiFunction<? super T, ? super U, ? extends V>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using CompletableFuture's default asynchronous execution facility, with the two results as arguments to the supplied function.
thenCombineFastFailAsync(CompletableFuture<? extends T>, CompletionStage<? extends U>, BiFunction<? super T, ? super U, ? extends V>, Executor) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when tow given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied function.
thenCombineFastFailAsync(CompletionStage<? extends U>, BiFunction<? super T, ? super U, ? extends V>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, is executed using Cffu.defaultExecutor(), with the two results as arguments to the supplied function.
thenCombineFastFailAsync(CompletionStage<? extends U>, BiFunction<? super T, ? super U, ? extends V>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this and the other given stage both complete normally, is executed using the supplied executor, with the two results as arguments to the supplied function.
thenCompose(Function<? super T, ? extends CompletionStage<U>>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that is completed with the same value as the CompletionStage returned by the given function.
thenComposeAsync(Function<? super T, ? extends CompletionStage<U>>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that is completed with the same value as the CompletionStage returned by the given function, executed using Cffu.defaultExecutor().
thenComposeAsync(Function<? super T, ? extends CompletionStage<U>>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that is completed with the same value as the CompletionStage returned by the given function, executed using the supplied Executor.
thenMAcceptAnyAsync(CompletableFuture<? extends T>, Executor, Consumer<? super T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the given stage's result as the argument to the given actions.
thenMAcceptAnyAsync(CompletableFuture<? extends T>, Consumer<? super T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the given stage's result as the argument to the given actions.
thenMAcceptAnyAsync(Executor, Consumer<? super T>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using the given Executor, with the given stage's result as the argument to the given actions.
thenMAcceptAnyAsync(Consumer<? super T>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using Cffu.defaultExecutor(), with the given stage's result as the argument to the given actions.
thenMAcceptAnySuccessAsync(CompletableFuture<? extends T>, Executor, Consumer<? super T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the given stage's result as the argument to the given actions.
thenMAcceptAnySuccessAsync(CompletableFuture<? extends T>, Consumer<? super T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the given stage's result as the argument to the given actions.
thenMAcceptAnySuccessAsync(Executor, Consumer<? super T>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using the given Executor, with the given stage's result as the argument to the given actions.
thenMAcceptAnySuccessAsync(Consumer<? super T>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using Cffu.defaultExecutor(), with the given stage's result as the argument to the given actions.
thenMAcceptAsync(CompletableFuture<? extends T>, Executor, Consumer<? super T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the given stage's result as the argument to the given actions.
thenMAcceptAsync(CompletableFuture<? extends T>, Consumer<? super T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the given stage's result as the argument to the given actions.
thenMAcceptAsync(Executor, Consumer<? super T>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using the given Executor, with the given stage's result as the argument to the given actions.
thenMAcceptAsync(Consumer<? super T>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using Cffu.defaultExecutor(), with the given stage's result as the argument to the given actions.
thenMAcceptFastFailAsync(CompletableFuture<? extends T>, Executor, Consumer<? super T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the given stage's result as the argument to the given actions.
thenMAcceptFastFailAsync(CompletableFuture<? extends T>, Consumer<? super T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the given stage's result as the argument to the given actions.
thenMAcceptFastFailAsync(Executor, Consumer<? super T>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using the given Executor, with the given stage's result as the argument to the given actions.
thenMAcceptFastFailAsync(Consumer<? super T>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using Cffu.defaultExecutor(), with the given stage's result as the argument to the given actions.
thenMApplyAllSuccessAsync(CompletableFuture<? extends T>, U, Executor, Function<? super T, ? extends U>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed in the given Executor with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenMApplyAllSuccessAsync(CompletableFuture<? extends T>, U, Function<? super T, ? extends U>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed in the CompletableFuture's default asynchronous execution facility with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenMApplyAllSuccessAsync(U, Executor, Function<? super T, ? extends U>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed in the given Executor with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenMApplyAllSuccessAsync(U, Function<? super T, ? extends U>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed in the Cffu's default asynchronous execution facility with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenMApplyAnyAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with any completed result obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenMApplyAnyAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with any completed result obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenMApplyAnyAsync(Executor, Function<? super T, ? extends U>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using the given Executor, with any completed result obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenMApplyAnyAsync(Function<? super T, ? extends U>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using the Cffu's default asynchronous execution facility, with any completed result obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenMApplyAnySuccessAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with any successful value obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenMApplyAnySuccessAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with any successful value obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenMApplyAnySuccessAsync(Executor, Function<? super T, ? extends U>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using the given Executor, with any successful value obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenMApplyAnySuccessAsync(Function<? super T, ? extends U>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using the Cffu's default asynchronous execution facility, with any successful value obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenMApplyAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenMApplyAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenMApplyAsync(Executor, Function<? super T, ? extends U>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using the given Executor, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenMApplyAsync(Function<? super T, ? extends U>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenMApplyFastFailAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenMApplyFastFailAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenMApplyFastFailAsync(Executor, Function<? super T, ? extends U>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using the given Executor, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenMApplyFastFailAsync(Function<? super T, ? extends U>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenMApplyMostSuccessAsync(CompletableFuture<? extends T>, U, long, TimeUnit, Function<? super T, ? extends U>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the most values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Functions arguments.
thenMApplyMostSuccessAsync(CompletableFuture<? extends T>, U, Executor, long, TimeUnit, Function<? super T, ? extends U>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the most values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Functions arguments.
thenMApplyMostSuccessAsync(U, long, TimeUnit, Function<? super T, ? extends U>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using Cffu.defaultExecutor(), with the most values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Functions arguments.
thenMApplyMostSuccessAsync(U, Executor, long, TimeUnit, Function<? super T, ? extends U>...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, is executed using the given Executor, with the most values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Functions arguments.
thenMRunAnyAsync(Runnable...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, executes using Cffu.defaultExecutor(),
thenMRunAnyAsync(CompletableFuture<?>, Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, executes the given actions using the CompletableFuture's default asynchronous execution facility.
thenMRunAnyAsync(CompletableFuture<?>, Executor, Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, executes the given actions using the given Executor.
thenMRunAnyAsync(Executor, Runnable...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, executes the given actions using the given Executor.
thenMRunAnySuccessAsync(Runnable...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, executes using Cffu.defaultExecutor(),
thenMRunAnySuccessAsync(CompletableFuture<?>, Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, executes the given actions using the CompletableFuture's default asynchronous execution facility.
thenMRunAnySuccessAsync(CompletableFuture<?>, Executor, Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, executes the given actions using the given Executor.
thenMRunAnySuccessAsync(Executor, Runnable...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, executes the given actions using the given Executor.
thenMRunAsync(Runnable...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, executes the given actions using Cffu.defaultExecutor().
thenMRunAsync(CompletableFuture<?>, Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, executes the given actions using the CompletableFuture's default asynchronous execution facility.
thenMRunAsync(CompletableFuture<?>, Executor, Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, executes the given actions using the given Executor.
thenMRunAsync(Executor, Runnable...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, executes the given actions using the given Executor.
thenMRunFastFailAsync(Runnable...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, executes using Cffu.defaultExecutor(),
thenMRunFastFailAsync(CompletableFuture<?>, Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, executes the given actions using the CompletableFuture's default asynchronous execution facility.
thenMRunFastFailAsync(CompletableFuture<?>, Executor, Runnable...) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, executes the given actions using the given Executor.
thenMRunFastFailAsync(Executor, Runnable...) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when the given stage completes normally, executes the given actions using the given Executor.
thenRun(Runnable) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes normally, executes the given action.
thenRunAsync(Runnable) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes normally, executes the given action using Cffu.defaultExecutor().
thenRunAsync(Runnable, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this stage completes normally, executes the given action using the supplied Executor.
thenTupleMApplyAllSuccessAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed in the given Executor with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAllSuccessAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed in the given Executor with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAllSuccessAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed in the given Executor with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAllSuccessAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed in the given Executor with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAllSuccessAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed in the CompletableFuture's default asynchronous execution facility with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenTupleMApplyAllSuccessAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed in the CompletableFuture's default asynchronous execution facility with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAllSuccessAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed in the CompletableFuture's default asynchronous execution facility with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAllSuccessAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed in the CompletableFuture's default asynchronous execution facility with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAllSuccessAsync(Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenTupleMApplyAllSuccessAsync(Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenTupleMApplyAllSuccessAsync(Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenTupleMApplyAllSuccessAsync(Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenTupleMApplyAllSuccessAsync(Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenTupleMApplyAllSuccessAsync(Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenTupleMApplyAllSuccessAsync(Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenTupleMApplyAllSuccessAsync(Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the successful values obtained by calling the given Functions (with the given stage's result as the argument to the given functions).
thenTupleMApplyAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyAsync(Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(CompletableFuture<? extends T>, Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(CompletableFuture<? extends T>, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(Executor, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyFastFailAsync(Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the Cffu.defaultExecutor(), with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(CompletableFuture<? extends T>, long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the most values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(CompletableFuture<? extends T>, long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the most values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(CompletableFuture<? extends T>, long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the most values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(CompletableFuture<? extends T>, long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the CompletableFuture's default asynchronous execution facility, with the most values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(CompletableFuture<? extends T>, Executor, long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the most values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(CompletableFuture<? extends T>, Executor, long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the most values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(CompletableFuture<? extends T>, Executor, long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the most values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(CompletableFuture<? extends T>, Executor, long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that, when the given stage completes normally, is executed using the given Executor, with the most values obtained by calling the given Functions (with the given stage's result as the argument to the given functions) in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(Executor, long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(Executor, long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(Executor, long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
thenTupleMApplyMostSuccessAsync(Executor, long, TimeUnit, Function<? super T, ? extends U1>, Function<? super T, ? extends U2>, Function<? super T, ? extends U3>, Function<? super T, ? extends U4>, Function<? super T, ? extends U5>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu that, when this Cffu completes normally, is executed using the supplied Executor, with the values obtained by calling the given Functions (with this Cffu's result as the argument to the given functions) in the same order of the given Functions arguments.
toCffu(ListenableFuture<T>, CffuFactory, boolean) - Static method in class io.foldright.cffu.ListenableFutureUtils
Converts input ListenableFuture to Cffu.
toCffu(CompletionStage<T>) - Method in class io.foldright.cffu.CffuFactory
Returns a Cffu maintaining the same completion properties as this stage and this CffuFactory config.
toCffuArray(CompletionStage<T>...) - Method in class io.foldright.cffu.CffuFactory
A convenient util method for wrap input CompletableFuture / CompletionStage / Cffu array element by CffuFactory.toCffu(CompletionStage).
toCffuState(Future.State) - Static method in enum io.foldright.cffu.CffuState
toCompletableFuture() - Method in class io.foldright.cffu.Cffu
Returns a CompletableFuture maintaining the same completion properties as this Cffu.
toCompletableFuture(ListenableFuture<T>, Executor, boolean) - Static method in class io.foldright.cffu.ListenableFutureUtils
toCompletableFutureArray(CompletionStage<T>...) - Static method in class io.foldright.cffu.CompletableFutureUtils
A convenient util method for converting input CompletionStage (including Cffu/CompletableFuture) array element by CompletionStage.toCompletableFuture().
toFutureState() - Method in enum io.foldright.cffu.CffuState
toListenableFuture(Cffu<T>) - Static method in class io.foldright.cffu.ListenableFutureUtils
Converts input Cffu to ListenableFuture.
toListenableFuture(CompletableFuture<T>) - Static method in class io.foldright.cffu.ListenableFutureUtils
toString() - Method in class io.foldright.cffu.Cffu
Returns a string identifying this Cffu, as well as its completion state.
toString() - Method in class io.foldright.cffu.tuple.Tuple2
 
toString() - Method in class io.foldright.cffu.tuple.Tuple3
 
toString() - Method in class io.foldright.cffu.tuple.Tuple4
 
toString() - Method in class io.foldright.cffu.tuple.Tuple5
 
Tuple2<T1,T2> - Class in io.foldright.cffu.tuple
Tuple2(aka Pair).
Tuple3<T1,T2,T3> - Class in io.foldright.cffu.tuple
Tuple3(aka Triple).
Tuple4<T1,T2,T3,T4> - Class in io.foldright.cffu.tuple
Tuple4, contains 4 elements.
Tuple5<T1,T2,T3,T4,T5> - Class in io.foldright.cffu.tuple
Tuple5, contains 5 elements.
tupleMSupplyAllSuccessAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given executor with the successfully values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given executor with the successfully values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given executor with the successfully values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given executor with the successfully values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given executor with the successfully values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given executor with the successfully values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given executor with the successfully values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given executor with the successfully values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Supplier<? extends T1>, Supplier<? extends T2>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility with the successful values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Supplier<? extends T1>, Supplier<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the successful values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility with the successful values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the successful values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility with the successful values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the successful values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility with the successful values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAllSuccessAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the successful values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Supplier<? extends T1>, Supplier<? extends T2>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the CffuFactory.defaultExecutor() with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Supplier<? extends T1>, Supplier<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the CffuFactory.defaultExecutor() with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the CffuFactory.defaultExecutor() with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the CffuFactory.defaultExecutor() with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the CffuFactory.defaultExecutor() with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Executor, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Supplier<? extends T1>, Supplier<? extends T2>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the CffuFactory.defaultExecutor() with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Supplier<? extends T1>, Supplier<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the CffuFactory.defaultExecutor() with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the CffuFactory.defaultExecutor() with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyFastFailAsync(Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the values obtained by calling the given Suppliers in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the Cffu's default asynchronous execution facility with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the CompletableFuture's default asynchronous execution facility with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(Executor, long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(Executor, long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(Executor, long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(Executor, long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(Executor, long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(Executor, long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(Executor, long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Method in class io.foldright.cffu.CffuFactory
Returns a new Cffu that is asynchronously completed by tasks running in the given Executor with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.
tupleMSupplyMostSuccessAsync(Executor, long, TimeUnit, Supplier<? extends T1>, Supplier<? extends T2>, Supplier<? extends T3>, Supplier<? extends T4>, Supplier<? extends T5>) - Static method in class io.foldright.cffu.CompletableFutureUtils
Returns a new CompletableFuture that is asynchronously completed by tasks running in the given Executor with the most values obtained by calling the given Suppliers in the given time(timeout, aka as many results as possible in the given time) in the same order of the given Suppliers arguments.

U

unsafeCompleteOnTimeout(T, long, TimeUnit) - Method in class io.foldright.cffu.Cffu
Completes this Cffu with the given value if not otherwise completed before the given timeout.
unsafeOrTimeout(long, TimeUnit) - Method in class io.foldright.cffu.Cffu
Exceptionally completes this Cffu with a TimeoutException if not otherwise completed before the given timeout.
unwrapCfException(Throwable) - Static method in class io.foldright.cffu.CompletableFutureUtils
A convenient util method for unwrapping CF exception (CompletionException/ExecutionException) to the biz exception.

V

valueOf(String) - Static method in enum io.foldright.cffu.CffuState
Returns the enum constant of this type with the specified name.
values() - Static method in enum io.foldright.cffu.CffuState
Returns an array containing the constants of this enum type, in the order they are declared.

W

whenComplete(BiConsumer<? super T, ? super Throwable>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu with the same result or exception as this stage, that executes the given action when this stage completes.
whenCompleteAsync(BiConsumer<? super T, ? super Throwable>) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu with the same result or exception as this stage, that executes the given action using Cffu.defaultExecutor() when this stage completes.
whenCompleteAsync(BiConsumer<? super T, ? super Throwable>, Executor) - Method in class io.foldright.cffu.Cffu
Returns a new Cffu with the same result or exception as this stage, that executes the given action using the supplied Executor when this stage completes.
wrap(Executor) - Method in interface io.foldright.cffu.spi.ExecutorWrapperProvider
Returns the executor wrapper of the given executor.
wrap(Executor) - Method in class io.foldright.cffu.ttl.CffuTtlExecutorWrapperProvider
Returns the TTL executor wrapper of the given executor.

_

_1 - Variable in class io.foldright.cffu.tuple.Tuple2
 
_1 - Variable in class io.foldright.cffu.tuple.Tuple3
 
_1 - Variable in class io.foldright.cffu.tuple.Tuple4
 
_1 - Variable in class io.foldright.cffu.tuple.Tuple5
 
_2 - Variable in class io.foldright.cffu.tuple.Tuple2
 
_2 - Variable in class io.foldright.cffu.tuple.Tuple3
 
_2 - Variable in class io.foldright.cffu.tuple.Tuple4
 
_2 - Variable in class io.foldright.cffu.tuple.Tuple5
 
_3 - Variable in class io.foldright.cffu.tuple.Tuple3
 
_3 - Variable in class io.foldright.cffu.tuple.Tuple4
 
_3 - Variable in class io.foldright.cffu.tuple.Tuple5
 
_4 - Variable in class io.foldright.cffu.tuple.Tuple4
 
_4 - Variable in class io.foldright.cffu.tuple.Tuple5
 
_5 - Variable in class io.foldright.cffu.tuple.Tuple5
 
A B C D E F G H I J L M N O P R S T U V W _ 
All Classes and Interfaces|All Packages|Serialized Form