Uses of Class
org.apache.commons.configuration2.reloading.ReloadingController
-
Packages that use ReloadingController Package Description org.apache.commons.configuration2.builder This package contains the implementations of configuration builder classes used to create newConfiguration
objects.org.apache.commons.configuration2.builder.combined A package containing the implementation of the builder for combined configurations.org.apache.commons.configuration2.reloading This package contains classes and interfaces related to the reloading mechanism. -
-
Uses of ReloadingController in org.apache.commons.configuration2.builder
Fields in org.apache.commons.configuration2.builder declared as ReloadingController Modifier and Type Field Description private ReloadingController
ReloadingBuilderSupportListener. reloadingController
Stores the associated reloading controller.private ReloadingController
ReloadingFileBasedConfigurationBuilder. reloadingController
The reloading controller associated with this object.Methods in org.apache.commons.configuration2.builder that return ReloadingController Modifier and Type Method Description private ReloadingController
ReloadingFileBasedConfigurationBuilder. createReloadingController()
Creates theReloadingController
associated with this object.ReloadingController
ReloadingFileBasedConfigurationBuilder. getReloadingController()
Gets theReloadingController
associated with this builder.Methods in org.apache.commons.configuration2.builder with parameters of type ReloadingController Modifier and Type Method Description static ReloadingBuilderSupportListener
ReloadingBuilderSupportListener. connect(BasicConfigurationBuilder<?> configBuilder, ReloadingController controller)
Creates a new instance ofReloadingBuilderSupportListener
which connects the specifiedConfigurationBuilder
with the givenReloadingController
.void
BasicConfigurationBuilder. connectToReloadingController(ReloadingController controller)
Connects this builder with aReloadingController
.Constructors in org.apache.commons.configuration2.builder with parameters of type ReloadingController Constructor Description ReloadingBuilderSupportListener(BasicConfigurationBuilder<?> configBuilder, ReloadingController controller)
Creates a new instance ofReloadingBuilderSupportListener
and initializes it with the associated objects. -
Uses of ReloadingController in org.apache.commons.configuration2.builder.combined
Fields in org.apache.commons.configuration2.builder.combined declared as ReloadingController Modifier and Type Field Description private ReloadingController
ReloadingCombinedConfigurationBuilder. reloadingController
The reloading controller used by this builder.private ReloadingController
ReloadingMultiFileConfigurationBuilder. reloadingController
The reloading controller used by this builder.Methods in org.apache.commons.configuration2.builder.combined that return ReloadingController Modifier and Type Method Description protected ReloadingController
ReloadingCombinedConfigurationBuilder. createReloadingController()
Creates theReloadingController
for this builder.private ReloadingController
ReloadingMultiFileConfigurationBuilder. createReloadingController()
Creates the reloading controller used by this builder.ReloadingController
MultiFileConfigurationBuilderProvider.ReloadableWrapperBuilder. getReloadingController()
ReloadingController
ReloadingCombinedConfigurationBuilder. getReloadingController()
Gets theReloadingController
associated with this object.ReloadingController
ReloadingMultiFileConfigurationBuilder. getReloadingController()
Gets theReloadingController
associated with this object.Method parameters in org.apache.commons.configuration2.builder.combined with type arguments of type ReloadingController Modifier and Type Method Description static void
ReloadingCombinedConfigurationBuilder. obtainReloadingController(java.util.Collection<ReloadingController> subControllers, java.lang.Object builder)
Checks whether the passed in builder object supports reloading. -
Uses of ReloadingController in org.apache.commons.configuration2.reloading
Subclasses of ReloadingController in org.apache.commons.configuration2.reloading Modifier and Type Class Description class
CombinedReloadingController
A specializedReloadingController
implementation which manages an arbitrary number of otherReloadingController
objects.Fields in org.apache.commons.configuration2.reloading declared as ReloadingController Modifier and Type Field Description private ReloadingController
PeriodicReloadingTrigger. controller
The associated reloading controller.Fields in org.apache.commons.configuration2.reloading with type parameters of type ReloadingController Modifier and Type Field Description private java.util.Collection<ReloadingController>
CombinedReloadingController. controllers
The collection with managed reloading controllers.Methods in org.apache.commons.configuration2.reloading that return ReloadingController Modifier and Type Method Description ReloadingController
ReloadingEvent. getController()
Gets theReloadingController
which caused this event.ReloadingController
ReloadingControllerSupport. getReloadingController()
Gets theReloadingController
associated with this object.Methods in org.apache.commons.configuration2.reloading that return types with arguments of type ReloadingController Modifier and Type Method Description private static java.util.Collection<ReloadingController>
CombinedReloadingController. checkManagedControllers(java.util.Collection<? extends ReloadingController> subCtrls)
Checks the collection with the passed in sub controllers and creates a defensive copy.java.util.Collection<ReloadingController>
CombinedReloadingController. getSubControllers()
Gets a (unmodifiable) collection with the sub controllers managed by this combined controller.Method parameters in org.apache.commons.configuration2.reloading with type arguments of type ReloadingController Modifier and Type Method Description private static java.util.Collection<ReloadingController>
CombinedReloadingController. checkManagedControllers(java.util.Collection<? extends ReloadingController> subCtrls)
Checks the collection with the passed in sub controllers and creates a defensive copy.Constructors in org.apache.commons.configuration2.reloading with parameters of type ReloadingController Constructor Description PeriodicReloadingTrigger(ReloadingController ctrl, java.lang.Object ctrlParam, long triggerPeriod, java.util.concurrent.TimeUnit unit)
Creates a new instance ofPeriodicReloadingTrigger
with a default executor service.PeriodicReloadingTrigger(ReloadingController ctrl, java.lang.Object ctrlParam, long triggerPeriod, java.util.concurrent.TimeUnit unit, java.util.concurrent.ScheduledExecutorService exec)
Creates a new instance ofPeriodicReloadingTrigger
and sets all parameters.ReloadingEvent(ReloadingController source, java.lang.Object addData)
Creates a new instance ofReloadingEvent
and initializes it.Constructor parameters in org.apache.commons.configuration2.reloading with type arguments of type ReloadingController Constructor Description CombinedReloadingController(java.util.Collection<? extends ReloadingController> subCtrls)
Creates a new instance ofCombinedReloadingController
and initializes it with theReloadingController
objects to be managed.
-