Uses of Class
org.apache.commons.lang3.concurrent.BackgroundInitializer
-
Packages that use BackgroundInitializer Package Description org.apache.commons.lang3.concurrent Provides support classes for multi-threaded programming. -
-
Uses of BackgroundInitializer in org.apache.commons.lang3.concurrent
Classes in org.apache.commons.lang3.concurrent with type parameters of type BackgroundInitializer Modifier and Type Class Description static classBackgroundInitializer.Builder<I extends BackgroundInitializer<T>,T>Builds a new instance.Subclasses of BackgroundInitializer in org.apache.commons.lang3.concurrent Modifier and Type Class Description classCallableBackgroundInitializer<T>A specializedBackgroundInitializerimplementation that wraps aCallableobject.classMultiBackgroundInitializerA specializedBackgroundInitializerimplementation that can deal with multiple background initialization tasks.Fields in org.apache.commons.lang3.concurrent with type parameters of type BackgroundInitializer Modifier and Type Field Description private java.util.Map<java.lang.String,BackgroundInitializer<?>>MultiBackgroundInitializer. childInitializersA map with the child initializers.private java.util.Map<java.lang.String,BackgroundInitializer<?>>MultiBackgroundInitializer.MultiBackgroundInitializerResults. initializersA map with the child initializers.Methods in org.apache.commons.lang3.concurrent that return BackgroundInitializer Modifier and Type Method Description private BackgroundInitializer<?>MultiBackgroundInitializer.MultiBackgroundInitializerResults. checkName(java.lang.String name)Checks whether an initializer with the given name exists.BackgroundInitializer<?>MultiBackgroundInitializer.MultiBackgroundInitializerResults. getInitializer(java.lang.String name)Gets theBackgroundInitializerwith the given name.Methods in org.apache.commons.lang3.concurrent that return types with arguments of type BackgroundInitializer Modifier and Type Method Description static <T> BackgroundInitializer.Builder<BackgroundInitializer<T>,T>BackgroundInitializer. builder()Creates a new builder.Methods in org.apache.commons.lang3.concurrent with parameters of type BackgroundInitializer Modifier and Type Method Description voidMultiBackgroundInitializer. addInitializer(java.lang.String name, BackgroundInitializer<?> backgroundInitializer)Adds a newBackgroundInitializerto this object.Constructor parameters in org.apache.commons.lang3.concurrent with type arguments of type BackgroundInitializer Constructor Description MultiBackgroundInitializerResults(java.util.Map<java.lang.String,BackgroundInitializer<?>> initializers, java.util.Map<java.lang.String,java.lang.Object> resultObjects, java.util.Map<java.lang.String,ConcurrentException> exceptions)Creates a new instance ofMultiBackgroundInitializer.MultiBackgroundInitializerResultsand initializes it with maps for theBackgroundInitializerobjects, their result objects and the exceptions thrown by them.
-