Uses of Interface
org.apache.commons.configuration2.reloading.ReloadingDetector
-
Packages that use ReloadingDetector 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.reloading This package contains classes and interfaces related to the reloading mechanism. -
-
Uses of ReloadingDetector in org.apache.commons.configuration2.builder
Methods in org.apache.commons.configuration2.builder that return ReloadingDetector Modifier and Type Method Description ReloadingDetector
DefaultReloadingDetectorFactory. createReloadingDetector(FileHandler handler, FileBasedBuilderParametersImpl params)
ReloadingDetector
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
. -
Uses of ReloadingDetector in org.apache.commons.configuration2.reloading
Classes in org.apache.commons.configuration2.reloading that implement ReloadingDetector Modifier and Type Class Description class
FileHandlerReloadingDetector
A specialized implementation ofReloadingDetector
which monitors a file specified by aFileHandler
.class
ManagedReloadingDetector
A strategy to reload configuration based on management requests.class
VFSFileHandlerReloadingDetector
A file-based reloading strategy that uses Commons VFS to determine when a file was changed.Methods in org.apache.commons.configuration2.reloading that return ReloadingDetector Modifier and Type Method Description ReloadingDetector
CombinedReloadingController. getDetector()
Returns theReloadingDetector
used by this controller.ReloadingDetector
ReloadingController. getDetector()
Returns theReloadingDetector
used by this controller.Constructors in org.apache.commons.configuration2.reloading with parameters of type ReloadingDetector Constructor Description ReloadingController(ReloadingDetector detect)
Creates a new instance ofReloadingController
and associates it with the givenReloadingDetector
object.
-