Class | Description |
---|---|
AsyncFunc<X,Y> |
Func that runs in the background.
|
CallableOf<X,T> |
Func as
Callable . |
ChainedFunc<X,Y,Z> |
Composed function.
|
FuncOf<X,Y> |
Represents many possible inputs as
Func . |
FuncWithFallback<X,Y> |
Func with a fallback plan.
|
IoCheckedFunc<X,Y> |
Func that doesn't throw checked
Exception , but throws
IOException instead. |
IoCheckedProc<X> |
Proc that doesn't throw checked
Exception , but
throws IOException instead. |
MatcherOf<T> |
Func as Matcher.
|
ProcOf<X> |
Func as Proc.
|
RepeatedFunc<X,Y> |
Func that repeats its calculation a few times before
returning the last result.
|
RetryFunc<X,Y> |
Func that will try a few times before throwing an exception.
|
RunnableOf<X> |
Func as Runnable.
|
StickyFunc<X,Y> |
Func that caches previously calculated values and doesn't
recalculate again.
|
SyncFunc<X,Y> |
Func that is thread-safe.
|
UncheckedFunc<X,Y> |
Func that doesn't throw checked
Exception . |
UncheckedProc<X> |
Proc that doesn't throw checked
Exception . |
Copyright © 2017 Cactoos. All rights reserved.