Package | Description |
---|---|
org.apache.commons.lang3.function |
Provides functional interfaces to complement those in
java.lang.function and utilities for working with Java
8 lambdas. |
Modifier and Type | Method and Description |
---|---|
static Runnable |
Failable.asRunnable(FailableRunnable<?> runnable)
Converts the given
FailableRunnable into a standard Runnable . |
static <E extends Throwable> |
Failable.run(FailableRunnable<E> runnable)
Runs a runnable and rethrows any exception as a
RuntimeException . |
static void |
Failable.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 the
AutoCloseable interface. |
static void |
Failable.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 the
AutoCloseable interface. |
static void |
Failable.tryWithResources(FailableRunnable<? extends Throwable> action,
FailableRunnable<? extends Throwable>... resources)
A simple try-with-resources implementation, that can be used, if your objects do not implement the
AutoCloseable interface. |
static void |
Failable.tryWithResources(FailableRunnable<? extends Throwable> action,
FailableRunnable<? extends Throwable>... resources)
A simple try-with-resources implementation, that can be used, if your objects do not implement the
AutoCloseable interface. |
Copyright © 2001–2020 The Apache Software Foundation. All rights reserved.