Uses of Interface
org.apache.commons.configuration2.reloading.ReloadingDetector
Packages that use ReloadingDetector
Package
Description
This package contains the implementations of configuration builder classes used to create new
Configuration
objects.
This package contains classes and interfaces related to the reloading mechanism.
-
Uses of ReloadingDetector in org.apache.commons.configuration2.builder
Fields in org.apache.commons.configuration2.builder declared as ReloadingDetectorModifier and TypeFieldDescriptionprivate ReloadingDetector
ReloadingFileBasedConfigurationBuilder.resultReloadingDetector
The reloading detector which does the actual reload check for the current result object.Methods in org.apache.commons.configuration2.builder that return ReloadingDetectorModifier and TypeMethodDescriptionDefaultReloadingDetectorFactory.createReloadingDetector
(FileHandler handler, FileBasedBuilderParametersImpl params) ReloadingDetectorFactory.createReloadingDetector
(FileHandler handler, FileBasedBuilderParametersImpl params) Creates a newReloadingDetector
object based on the passed in parameters.protected ReloadingDetector
ReloadingFileBasedConfigurationBuilder.createReloadingDetector
(FileHandler handler, FileBasedBuilderParametersImpl fbparams) Creates aReloadingDetector
which monitors the passed inFileHandler
.private ReloadingDetector
ReloadingFileBasedConfigurationBuilder.createReloadingDetectorForController()
Creates aReloadingDetector
wrapper to be passed to the associatedReloadingController
. -
Uses of ReloadingDetector in org.apache.commons.configuration2.reloading
Classes in org.apache.commons.configuration2.reloading that implement ReloadingDetectorModifier and TypeClassDescriptionprivate static final class
A specialized implementation of theReloadingDetector
interface which operates on a collection ofReloadingController
objects.class
A specialized implementation ofReloadingDetector
which monitors a file specified by aFileHandler
.class
A strategy to reload configuration based on management requests.class
A file-based reloading strategy that uses Commons VFS to determine when a file was changed.Fields in org.apache.commons.configuration2.reloading declared as ReloadingDetectorModifier and TypeFieldDescriptionprivate final ReloadingDetector
CombinedReloadingController.detector
The reloading detector used by this instance.private final ReloadingDetector
ReloadingController.detector
Stores a reference to the reloading detector.private static final ReloadingDetector
CombinedReloadingController.DUMMY
Constant for a dummy reloading detector.Methods in org.apache.commons.configuration2.reloading that return ReloadingDetectorModifier and TypeMethodDescriptionCombinedReloadingController.getDetector()
Gets theReloadingDetector
used by this controller.ReloadingController.getDetector()
Gets theReloadingDetector
used by this controller.Constructors in org.apache.commons.configuration2.reloading with parameters of type ReloadingDetectorModifierConstructorDescriptionReloadingController
(ReloadingDetector detect) Creates a new instance ofReloadingController
and associates it with the givenReloadingDetector
object.