default LongConsumerWithException<E> |
LongConsumerWithException.andThen(LongConsumerWithException<? extends E> after) |
Returns a composed LongConsumerWithException that performs, in
sequence, this operation followed by the after operation.
|
static <E extends Exception> ConsumerWithException<Long,E> |
LongConsumerWithException.asConsumer(LongConsumerWithException<E> operation) |
Converts a LongConsumerWithException to a
ConsumerWithException .
|
static <E extends Exception> LongConsumer |
LongConsumerWithException.ignored(LongConsumerWithException<E> operation) |
Converts a LongConsumerWithException to a lifted LongConsumer
ignoring exception.
|
static <E extends Exception> LongConsumer |
LongConsumerWithException.lifted(LongConsumerWithException<E> operation) |
Converts a LongConsumerWithException to a lifted LongConsumer
ignoring exception.
|
static <E extends Exception> LongFunction<CompletionStage<Void>> |
LongConsumerWithException.staged(LongConsumerWithException<E> operation) |
Converts a LongConsumerWithException to a staged LongFunction
.
|
static <E extends Exception> LongConsumer |
LongConsumerWithException.unchecked(LongConsumerWithException<E> operation) |
Converts a LongConsumerWithException to a LongConsumer that
convert exception to RuntimeException .
|
static <E extends Exception> LongConsumer |
LongConsumerWithException.unchecked(LongConsumerWithException<E> operation,
Function<Exception,RuntimeException> exceptionMapper) |
Converts a LongConsumerWithException to a LongConsumer that
convert exception to RuntimeException by using the provided mapping
function.
|