Uses of Interface
org.forgerock.util.promise.ExceptionHandler
Packages that use ExceptionHandler
-
Uses of ExceptionHandler in org.forgerock.util.promise
Classes in org.forgerock.util.promise that implement ExceptionHandlerModifier and TypeClassDescriptionclass
PromiseImpl<V,
E extends Exception> An implementation ofPromise
which can be used as is, or as the basis for more complex asynchronous behavior.Methods in org.forgerock.util.promise with parameters of type ExceptionHandlerModifier and TypeMethodDescriptionPromise.thenOnException
(ExceptionHandler<? super E> onException) Registers the provided completion handler for notification if thisPromise
cannot be completed due to an exception.PromiseImpl.thenOnException
(ExceptionHandler<? super E> onException) Promise.thenOnResultOrException
(ResultHandler<? super V> onResult, ExceptionHandler<? super E> onException) Registers the provided completion handlers for notification once thisPromise
has completed (with a result or an exception).PromiseImpl.thenOnResultOrException
(ResultHandler<? super V> onResult, ExceptionHandler<? super E> onException)