Uses of Class
org.apache.commons.lang3.concurrent.BackgroundInitializer
Packages that use BackgroundInitializer
Package
Description
Provides support classes for multi-threaded programming.
-
Uses of BackgroundInitializer in org.apache.commons.lang3.concurrent
Subclasses of BackgroundInitializer in org.apache.commons.lang3.concurrentModifier and TypeClassDescriptionclass
A specializedBackgroundInitializer
implementation that wraps aCallable
object.class
A specializedBackgroundInitializer
implementation that can deal with multiple background initialization tasks.Fields in org.apache.commons.lang3.concurrent with type parameters of type BackgroundInitializerModifier and TypeFieldDescriptionprivate final Map<String,
BackgroundInitializer<?>> MultiBackgroundInitializer.childInitializers
A map with the child initializers.private final Map<String,
BackgroundInitializer<?>> MultiBackgroundInitializer.MultiBackgroundInitializerResults.initializers
A map with the child initializers.Methods in org.apache.commons.lang3.concurrent that return BackgroundInitializerModifier and TypeMethodDescriptionprivate BackgroundInitializer<?>
Checks whether an initializer with the given name exists.MultiBackgroundInitializer.MultiBackgroundInitializerResults.getInitializer
(String name) Returns theBackgroundInitializer
with the given name.Methods in org.apache.commons.lang3.concurrent with parameters of type BackgroundInitializerModifier and TypeMethodDescriptionvoid
MultiBackgroundInitializer.addInitializer
(String name, BackgroundInitializer<?> backgroundInitializer) Adds a newBackgroundInitializer
to this object.Constructor parameters in org.apache.commons.lang3.concurrent with type arguments of type BackgroundInitializerModifierConstructorDescriptionprivate
MultiBackgroundInitializerResults
(Map<String, BackgroundInitializer<?>> inits, Map<String, Object> results, Map<String, ConcurrentException> excepts) Creates a new instance ofMultiBackgroundInitializerResults
and initializes it with maps for theBackgroundInitializer
objects, their result objects and the exceptions thrown by them.