Class UncheckedFutureImpl<V>

java.lang.Object
org.apache.commons.lang3.concurrent.AbstractFutureProxy<V>
org.apache.commons.lang3.concurrent.UncheckedFutureImpl<V>
Type Parameters:
V - The result type returned by this UncheckedFuture's get() and get(long, TimeUnit) methods.
All Implemented Interfaces:
Future<V>, UncheckedFuture<V>

final class UncheckedFutureImpl<V> extends AbstractFutureProxy<V> implements UncheckedFuture<V>
An Future implementation that throws unchecked instead of checked exceptions.
Since:
3.13.0
See Also: