Uses of Interface
org.apache.commons.lang3.function.FailableConsumer
-
Packages that use FailableConsumer Package Description org.apache.commons.lang3.concurrent.locks Provides support classes for multi-threaded programming.org.apache.commons.lang3.function Provides functional interfaces to complement those injava.lang.functionand utilities for working with Java 8 lambdas.org.apache.commons.lang3.stream Provides utility classes to complement those injava.util.stream.org.apache.commons.lang3.time Provides classes and methods to work with dates and durations. -
-
Uses of FailableConsumer in org.apache.commons.lang3.concurrent.locks
Methods in org.apache.commons.lang3.concurrent.locks with parameters of type FailableConsumer Modifier and Type Method Description voidLockingVisitors.LockVisitor. acceptReadLocked(FailableConsumer<O,?> consumer)Provides read (shared, non-exclusive) access to the locked (hidden) object.voidLockingVisitors.LockVisitor. acceptWriteLocked(FailableConsumer<O,?> consumer)Provides write (exclusive) access to the locked (hidden) object.protected voidLockingVisitors.LockVisitor. lockAcceptUnlock(Supplier<Lock> lockSupplier, FailableConsumer<O,?> consumer)This method provides the default implementation forLockingVisitors.LockVisitor.acceptReadLocked(FailableConsumer), andLockingVisitors.LockVisitor.acceptWriteLocked(FailableConsumer). -
Uses of FailableConsumer in org.apache.commons.lang3.function
Fields in org.apache.commons.lang3.function declared as FailableConsumer Modifier and Type Field Description static FailableConsumerFailableConsumer. NOPNOP singletonMethods in org.apache.commons.lang3.function that return FailableConsumer Modifier and Type Method Description default FailableConsumer<T,E>FailableConsumer. andThen(FailableConsumer<? super T,E> after)Returns a composedConsumerlikeConsumer.andThen(Consumer).static <T,E extends Throwable>
FailableConsumer<T,E>FailableConsumer. nop()Returns The NOP singleton.Methods in org.apache.commons.lang3.function with parameters of type FailableConsumer Modifier and Type Method Description static <T,E extends Throwable>
voidFailable. accept(FailableConsumer<T,E> consumer, T object)Consumes a consumer and rethrows any exception as aRuntimeException.default FailableConsumer<T,E>FailableConsumer. andThen(FailableConsumer<? super T,E> after)Returns a composedConsumerlikeConsumer.andThen(Consumer).static <T> Consumer<T>Failable. asConsumer(FailableConsumer<T,?> consumer)Converts the givenFailableConsumerinto a standardConsumer.static voidFailable. tryWithResources(FailableRunnable<? extends Throwable> action, FailableConsumer<Throwable,? extends Throwable> errorHandler, FailableRunnable<? extends Throwable>... resources)A simple try-with-resources implementation, that can be used, if your objects do not implement theAutoCloseableinterface. -
Uses of FailableConsumer in org.apache.commons.lang3.stream
Methods in org.apache.commons.lang3.stream with parameters of type FailableConsumer Modifier and Type Method Description voidStreams.FailableStream. forEach(FailableConsumer<T,?> action)Performs an action for each element of this stream. -
Uses of FailableConsumer in org.apache.commons.lang3.time
Methods in org.apache.commons.lang3.time with parameters of type FailableConsumer Modifier and Type Method Description static <E extends Throwable>
DurationDurationUtils. of(FailableConsumer<Instant,E> consumer)Runs the lambda and returns the duration of its execution.
-