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
Methods in org.apache.commons.lang3.concurrent that return ConcurrentException Modifier and Type Method Description static ConcurrentExceptionConcurrentUtils. extractCause(ExecutionException ex)Inspects the cause of the specifiedExecutionExceptionand creates aConcurrentExceptionwith the checked cause if necessary.ConcurrentExceptionMultiBackgroundInitializer.MultiBackgroundInitializerResults. getException(String name)Returns theConcurrentExceptionobject that was thrown by theBackgroundInitializerwith the given name.Methods in org.apache.commons.lang3.concurrent that throw ConcurrentException Modifier and Type Method Description static <K,V>
VConcurrentUtils. createIfAbsent(ConcurrentMap<K,V> map, K key, ConcurrentInitializer<V> init)Checks if a concurrent map contains a key and creates a corresponding value if not.TAtomicInitializer. get()Returns the object managed by this initializer.TAtomicSafeInitializer. get()Gets (and initialize, if not initialized yet) the required objectTBackgroundInitializer. get()Returns the result of the background initialization.TConcurrentInitializer. get()Returns the fully initialized object produced by thisConcurrentInitializer.TConstantInitializer. get()Returns the object managed by this initializer.TLazyInitializer. get()Returns the object wrapped by this instance.static voidConcurrentUtils. handleCause(ExecutionException ex)Handles the specifiedExecutionException.protected abstract TAtomicInitializer. initialize()Creates and initializes the object managed by thisAtomicInitializer.protected abstract TAtomicSafeInitializer. initialize()Creates and initializes the object managed by thisAtomicInitializer.static <T> TConcurrentUtils. initialize(ConcurrentInitializer<T> initializer)Invokes the specifiedConcurrentInitializerand returns the object produced by the initializer.protected abstract TLazyInitializer. initialize()Creates and initializes the object managed by thisLazyInitializer.
-