Uses of Class
org.apache.commons.lang3.concurrent.ConcurrentException
-
Packages that use ConcurrentException Package Description org.apache.commons.lang3.concurrent Provides support classes for multi-threaded programming. -
-
Uses of ConcurrentException in org.apache.commons.lang3.concurrent
Fields in org.apache.commons.lang3.concurrent with type parameters of type ConcurrentException Modifier and Type Field Description private java.util.Map<java.lang.String,ConcurrentException>
MultiBackgroundInitializer.MultiBackgroundInitializerResults. exceptions
A map with the exceptions.Methods in org.apache.commons.lang3.concurrent that return ConcurrentException Modifier and Type Method Description static ConcurrentException
ConcurrentUtils. extractCause(java.util.concurrent.ExecutionException ex)
Inspects the cause of the specifiedExecutionException
and creates aConcurrentException
with the checked cause if necessary.ConcurrentException
MultiBackgroundInitializer.MultiBackgroundInitializerResults. getException(java.lang.String name)
Returns theConcurrentException
object that was thrown by theBackgroundInitializer
with the given name.Methods in org.apache.commons.lang3.concurrent that throw ConcurrentException Modifier and Type Method Description static <K,V>
VConcurrentUtils. createIfAbsent(java.util.concurrent.ConcurrentMap<K,V> map, K key, ConcurrentInitializer<V> init)
Checks if a concurrent map contains a key and creates a corresponding value if not.T
AtomicInitializer. get()
Returns the object managed by this initializer.T
AtomicSafeInitializer. get()
Gets (and initialize, if not initialized yet) the required objectT
BackgroundInitializer. get()
Returns the result of the background initialization.T
ConcurrentInitializer. get()
Returns the fully initialized object produced by thisConcurrentInitializer
.T
ConstantInitializer. get()
Returns the object managed by this initializer.T
LazyInitializer. get()
Returns the object wrapped by this instance.static void
ConcurrentUtils. handleCause(java.util.concurrent.ExecutionException ex)
Handles the specifiedExecutionException
.protected abstract T
AtomicInitializer. initialize()
Creates and initializes the object managed by thisAtomicInitializer
.protected abstract T
AtomicSafeInitializer. initialize()
Creates and initializes the object managed by thisAtomicInitializer
.static <T> T
ConcurrentUtils. initialize(ConcurrentInitializer<T> initializer)
Invokes the specifiedConcurrentInitializer
and returns the object produced by the initializer.protected abstract T
LazyInitializer. initialize()
Creates and initializes the object managed by thisLazyInitializer
.
-