Interface | Description |
---|---|
Consumer3<T1,T2,T3> |
Functional interface for a callback that consumes multipe values at the same
and may throw a checked exception.
|
Consumer4<T1,T2,T3,T4> |
Functional interface for a callback that consumes multipe values at the same
and may throw a checked exception.
|
Consumer5<T1,T2,T3,T4,T5> |
Functional interface for a callback that consumes multipe values at the same
and may throw a checked exception.
|
Consumer6<T1,T2,T3,T4,T5,T6> |
Functional interface for a callback that consumes multipe values at the same
and may throw a checked exception.
|
Consumer7<T1,T2,T3,T4,T5,T6,T7> |
Functional interface for a callback that consumes multipe values at the same
and may throw a checked exception.
|
Consumer8<T1,T2,T3,T4,T5,T6,T7,T8> |
Functional interface for a callback that consumes multipe values at the same
and may throw a checked exception.
|
Consumer9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Functional interface for a callback that consumes multipe values at the same
and may throw a checked exception.
|
PlainBiConsumer<T1,T2> |
A
BiConsumer with suppressed exception on its
PlainBiConsumer.accept(Object, Object) method. |
PlainBiFunction<T1,T2,R> |
A
BiFunction with suppressed exception on its
PlainBiFunction.apply(Object, Object) method. |
PlainConsumer<T> |
A
Consumer with suppressed exception on its PlainConsumer.accept(Object) method. |
PlainFunction<T,R> |
A
Function with suppressed exception on its PlainFunction.apply(Object) method. |
PlainFunction3<T1,T2,T3,R> |
A
Function3 with suppressed exception on its
PlainFunction3.apply(Object, Object, Object) method. |
PlainFunction4<T1,T2,T3,T4,R> |
A
Function4 with suppressed exception on its
PlainFunction4.apply(Object, Object, Object, Object) method. |
PlainFunction5<T1,T2,T3,T4,T5,R> |
A
Function5 with suppressed exception on its
PlainFunction5.apply(Object, Object, Object, Object, Object) method. |
PlainFunction6<T1,T2,T3,T4,T5,T6,R> |
A
Function6 with suppressed exception on its
PlainFunction6.apply(Object, Object, Object, Object, Object, Object) method. |
PlainFunction7<T1,T2,T3,T4,T5,T6,T7,R> |
A
Function7 with suppressed exception on its
PlainFunction7.apply(Object, Object, Object, Object, Object, Object, Object) method. |
PlainFunction8<T1,T2,T3,T4,T5,T6,T7,T8,R> |
A
Function8 with suppressed exception on its
PlainFunction8.apply(Object, Object, Object, Object, Object, Object, Object, Object) method. |
PlainFunction9<T1,T2,T3,T4,T5,T6,T7,T8,T9,R> |
A
Function9 with suppressed exception on its
PlainFunction9.apply(Object, Object, Object, Object, Object, Object, Object, Object, Object) method. |
SimpleCallable<T> |
A
Callable with suppressed exception on its SimpleCallable.call() method. |
Class | Description |
---|---|
FunctionsEx |
Utility methods to work with functional interfaces of this package.
|
FunctionTagging |
Wraps the regular
io.reactivex.functions function types and appends
the user-specified tag to the exception the wrapped function produces. |
Exception | Description |
---|---|
FunctionTagging.FunctionTaggingException |
The stackless tagging exception appended to the chain of causes of
the original exception thrown by the wrapped function.
|