Skip navigation links
A B C E F G H N O P R S T U W 

A

accept(T, U) - Method in class nl.talsmasoftware.context.functions.BiConsumerWithContext
 
accept(T) - Method in class nl.talsmasoftware.context.functions.ConsumerWithContext
 
acceptEither(CompletionStage<? extends T>, Consumer<? super T>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
acceptEitherAsync(CompletionStage<? extends T>, Consumer<? super T>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
acceptEitherAsync(CompletionStage<? extends T>, Consumer<? super T>, Executor) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
and(BiPredicate<? super IN1, ? super IN2>) - Method in class nl.talsmasoftware.context.functions.BiPredicateWithContext
 
and(Predicate<? super T>) - Method in class nl.talsmasoftware.context.functions.PredicateWithContext
 
andThen(BiConsumer<? super T, ? super U>) - Method in class nl.talsmasoftware.context.functions.BiConsumerWithContext
 
andThen(Function<? super OUT, ? extends V>) - Method in class nl.talsmasoftware.context.functions.BiFunctionWithContext
 
andThen(Consumer<? super T>) - Method in class nl.talsmasoftware.context.functions.ConsumerWithContext
 
andThen(Function<? super OUT, ? extends V>) - Method in class nl.talsmasoftware.context.functions.FunctionWithContext
 
apply(IN1, IN2) - Method in class nl.talsmasoftware.context.functions.BiFunctionWithContext
 
apply(IN) - Method in class nl.talsmasoftware.context.functions.FunctionWithContext
 
applyToEither(CompletionStage<? extends T>, Function<? super T, U>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
applyToEitherAsync(CompletionStage<? extends T>, Function<? super T, U>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
applyToEitherAsync(CompletionStage<? extends T>, Function<? super T, U>, Executor) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 

B

BiConsumerWithContext<T,U> - Class in nl.talsmasoftware.context.functions
A wrapper for BiConsumer that reactivates a context snapshot before calling a delegate.
BiConsumerWithContext(ContextSnapshot, BiConsumer<T, U>) - Constructor for class nl.talsmasoftware.context.functions.BiConsumerWithContext
 
BiFunctionWithContext<IN1,IN2,OUT> - Class in nl.talsmasoftware.context.functions
A wrapper for BiFunction that reactivates a context snapshot before calling a delegate.
BiFunctionWithContext(ContextSnapshot, BiFunction<IN1, IN2, OUT>) - Constructor for class nl.talsmasoftware.context.functions.BiFunctionWithContext
 
BinaryOperatorWithContext<T> - Class in nl.talsmasoftware.context.functions
A wrapper for BinaryOperator that reactivates a context snapshot before calling a delegate.
BinaryOperatorWithContext(ContextSnapshot, BinaryOperator<T>) - Constructor for class nl.talsmasoftware.context.functions.BinaryOperatorWithContext
 
BiPredicateWithContext<IN1,IN2> - Class in nl.talsmasoftware.context.functions
A wrapper for BiPredicate that reactivates a context snapshot before calling a delegate.
BiPredicateWithContext(ContextSnapshot, BiPredicate<IN1, IN2>) - Constructor for class nl.talsmasoftware.context.functions.BiPredicateWithContext
 
BooleanSupplierWithContext - Class in nl.talsmasoftware.context.functions
A wrapper for BooleanSupplier that reactivates a context snapshot before calling a delegate.
BooleanSupplierWithContext(ContextSnapshot, BooleanSupplier) - Constructor for class nl.talsmasoftware.context.functions.BooleanSupplierWithContext
 

C

compose(Function<? super V, ? extends IN>) - Method in class nl.talsmasoftware.context.functions.FunctionWithContext
 
ConsumerWithContext<T> - Class in nl.talsmasoftware.context.functions
A wrapper for Consumer that reactivates a context snapshot before calling a delegate.
ConsumerWithContext(ContextSnapshot, Consumer<T>) - Constructor for class nl.talsmasoftware.context.functions.ConsumerWithContext
 
ContextAwareCompletableFuture<T> - Class in nl.talsmasoftware.context.futures
This class extends the standard CompletableFuture that was introduced in java version 8.
ContextAwareCompletableFuture() - Constructor for class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
Creates a new ContextSnapshot and remembers that in this completable future, running all completion methods within this snapshot.
ContextAwareCompletableFuture(ContextSnapshot) - Constructor for class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
Creates a new CompletableFuture where all completion methods are run within the specified snapshot context.

E

exceptionally(Function<Throwable, ? extends T>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 

F

FunctionWithContext<IN,OUT> - Class in nl.talsmasoftware.context.functions
A wrapper for Function that reactivates a context snapshot before calling a delegate.
FunctionWithContext(ContextSnapshot, Function<IN, OUT>) - Constructor for class nl.talsmasoftware.context.functions.FunctionWithContext
 

G

get() - Method in class nl.talsmasoftware.context.functions.SupplierWithContext
 
getAsBoolean() - Method in class nl.talsmasoftware.context.functions.BooleanSupplierWithContext
 

H

handle(BiFunction<? super T, Throwable, ? extends U>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
handleAsync(BiFunction<? super T, Throwable, ? extends U>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
handleAsync(BiFunction<? super T, Throwable, ? extends U>, Executor) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 

N

nl.talsmasoftware.context.functions - package nl.talsmasoftware.context.functions
 
nl.talsmasoftware.context.futures - package nl.talsmasoftware.context.futures
 

O

or(BiPredicate<? super IN1, ? super IN2>) - Method in class nl.talsmasoftware.context.functions.BiPredicateWithContext
 
or(Predicate<? super T>) - Method in class nl.talsmasoftware.context.functions.PredicateWithContext
 

P

PredicateWithContext<T> - Class in nl.talsmasoftware.context.functions
A wrapper for Predicate that reactivates a context snapshot before calling a delegate.
PredicateWithContext(ContextSnapshot, Predicate<T>) - Constructor for class nl.talsmasoftware.context.functions.PredicateWithContext
 

R

run() - Method in class nl.talsmasoftware.context.functions.RunnableWithContext
 
runAfterBoth(CompletionStage<?>, Runnable) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
runAfterBothAsync(CompletionStage<?>, Runnable) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
runAfterBothAsync(CompletionStage<?>, Runnable, Executor) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
runAfterEither(CompletionStage<?>, Runnable) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
runAfterEitherAsync(CompletionStage<?>, Runnable) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
runAfterEitherAsync(CompletionStage<?>, Runnable, Executor) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
runAsync(Runnable) - Static method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
Runs the runnable task in the common ForkJoinPool within the current context and also applies that context to all successive calls to the CompletableFuture.
runAsync(Runnable, Executor) - Static method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
Runs the runnable task in the specified executor within the current context and also applies that context to all successive calls to the CompletableFuture.
runAsync(Runnable, Executor, ContextSnapshot) - Static method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
Runs the runnable task in the specified executor within the specified context snapshot and also applies that context to all successive calls to the CompletableFuture.
RunnableWithContext - Class in nl.talsmasoftware.context.functions
A wrapper for Runnable that reactivates a context snapshot before calling a delegate.
RunnableWithContext(ContextSnapshot, Runnable) - Constructor for class nl.talsmasoftware.context.functions.RunnableWithContext
 

S

SupplierWithContext<T> - Class in nl.talsmasoftware.context.functions
A wrapper for Supplier that reactivates a context snapshot before calling a delegate.
SupplierWithContext(ContextSnapshot, Supplier<T>) - Constructor for class nl.talsmasoftware.context.functions.SupplierWithContext
 
supplyAsync(Supplier<U>) - Static method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
Runs the supplier task in the common ForkJoinPool within the current context and also applies that context to all successive calls to the CompletableFuture.
supplyAsync(Supplier<U>, Executor) - Static method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
Runs the supplier task in the specified executor within the current context and also applies that context to all successive calls to the CompletableFuture.
supplyAsync(Supplier<U>, Executor, ContextSnapshot) - Static method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
Runs the supplier task in the specified executor within the specified context snapshot and also applies that context to all successive calls to the CompletableFuture.

T

test(IN1, IN2) - Method in class nl.talsmasoftware.context.functions.BiPredicateWithContext
 
test(T) - Method in class nl.talsmasoftware.context.functions.PredicateWithContext
 
thenAccept(Consumer<? super T>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenAcceptAsync(Consumer<? super T>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenAcceptAsync(Consumer<? super T>, Executor) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenAcceptBoth(CompletionStage<? extends U>, BiConsumer<? super T, ? super U>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenAcceptBothAsync(CompletionStage<? extends U>, BiConsumer<? super T, ? super U>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenAcceptBothAsync(CompletionStage<? extends U>, BiConsumer<? super T, ? super U>, Executor) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenApply(Function<? super T, ? extends U>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenApplyAsync(Function<? super T, ? extends U>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenApplyAsync(Function<? super T, ? extends U>, Executor) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenCombine(CompletionStage<? extends U>, BiFunction<? super T, ? super U, ? extends V>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenCombineAsync(CompletionStage<? extends U>, BiFunction<? super T, ? super U, ? extends V>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenCombineAsync(CompletionStage<? extends U>, BiFunction<? super T, ? super U, ? extends V>, Executor) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenCompose(Function<? super T, ? extends CompletionStage<U>>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenComposeAsync(Function<? super T, ? extends CompletionStage<U>>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenComposeAsync(Function<? super T, ? extends CompletionStage<U>>, Executor) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenRun(Runnable) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenRunAsync(Runnable) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
thenRunAsync(Runnable, Executor) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 

U

UnaryOperatorWithContext<T> - Class in nl.talsmasoftware.context.functions
A wrapper for UnaryOperator that reactivates a context snapshot before calling a delegate.
UnaryOperatorWithContext(ContextSnapshot, UnaryOperator<T>) - Constructor for class nl.talsmasoftware.context.functions.UnaryOperatorWithContext
 

W

whenComplete(BiConsumer<? super T, ? super Throwable>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
whenCompleteAsync(BiConsumer<? super T, ? super Throwable>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
whenCompleteAsync(BiConsumer<? super T, ? super Throwable>, Executor) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
 
wrapResult(CompletableFuture<RESULT>) - Method in class nl.talsmasoftware.context.futures.ContextAwareCompletableFuture
Wraps the resulting completable future from any folowup calls in this class.
A B C E F G H N O P R S T U W 
Skip navigation links

Copyright © 2016–2018 Talsma ICT. All rights reserved.