Interface | Description |
---|---|
PromisedValues<T> |
This allows multiple
CompletionStage s to be combined together and completed
as one and should something go wrong, instead of throwing CompletionException s it captures the cause and returns null for that
data value, other wise it allows you to access them as a list of values. |
Class | Description |
---|---|
Assertions | |
CompletableFutureKit |
Some really basic helpers when working with CompletableFutures
|
DefaultCacheMap<U,V> |
Default implementation of
CacheMap that is based on a regular LinkedHashMap . |
PromisedValuesImpl<T> |