Callback |
A generic functional interface that is more semantically sound than Runnable .
|
ExceptionalCallback<E extends java.lang.Exception> |
A generic functional interface that is more semantically sound than Runnable .
|
ExceptionalConsumer<T,E extends java.lang.Exception> |
A generic functional interface that allows you to consume an item and potentially throw
an exception.
|
ExceptionalFunction<I,R,E extends java.lang.Exception> |
A generic functional interface that allows you to consume an item, return a result,
and potentially throw an exception.
|
TerminatingConsumer<T> |
TerminatingConsumer is a Consumer Consumer that can request termination
of the supplier once some condition is reached, for example some number of consumed results
accepted.
|