Uses of Class
org.apache.commons.configuration2.reloading.ReloadingController
Packages that use ReloadingController
Package
Description
This package contains the implementations of configuration builder classes used to create new
Configuration objects.
A package containing the implementation of the builder for combined configurations.
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 ReloadingControllerModifier and TypeFieldDescriptionprivate final ReloadingControllerReloadingBuilderSupportListener.reloadingControllerStores the associated reloading controller.private final ReloadingControllerReloadingFileBasedConfigurationBuilder.reloadingControllerThe reloading controller associated with this object.Methods in org.apache.commons.configuration2.builder that return ReloadingControllerModifier and TypeMethodDescriptionprivate ReloadingControllerReloadingFileBasedConfigurationBuilder.createReloadingController()Creates theReloadingControllerassociated with this object.ReloadingFileBasedConfigurationBuilder.getReloadingController()Gets theReloadingControllerassociated with this builder.Methods in org.apache.commons.configuration2.builder with parameters of type ReloadingControllerModifier and TypeMethodDescriptionReloadingBuilderSupportListener.connect(BasicConfigurationBuilder<?> configBuilder, ReloadingController controller) Creates a new instance ofReloadingBuilderSupportListenerwhich connects the specifiedConfigurationBuilderwith the givenReloadingController.final voidBasicConfigurationBuilder.connectToReloadingController(ReloadingController controller) Connects this builder with aReloadingController.Constructors in org.apache.commons.configuration2.builder with parameters of type ReloadingControllerModifierConstructorDescriptionprivateReloadingBuilderSupportListener(BasicConfigurationBuilder<?> configBuilder, ReloadingController controller) Creates a new instance ofReloadingBuilderSupportListenerand 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 ReloadingControllerModifier and TypeFieldDescriptionprivate ReloadingControllerReloadingCombinedConfigurationBuilder.reloadingControllerThe reloading controller used by this builder.private final ReloadingControllerReloadingMultiFileConfigurationBuilder.reloadingControllerThe reloading controller used by this builder.Methods in org.apache.commons.configuration2.builder.combined that return ReloadingControllerModifier and TypeMethodDescriptionprotected ReloadingControllerReloadingCombinedConfigurationBuilder.createReloadingController()Creates theReloadingControllerfor this builder.private ReloadingControllerReloadingMultiFileConfigurationBuilder.createReloadingController()Creates the reloading controller used by this builder.MultiFileConfigurationBuilderProvider.ReloadableWrapperBuilder.getReloadingController()ReloadingCombinedConfigurationBuilder.getReloadingController()Gets theReloadingControllerassociated with this object.ReloadingMultiFileConfigurationBuilder.getReloadingController()Gets theReloadingControllerassociated with this object.Method parameters in org.apache.commons.configuration2.builder.combined with type arguments of type ReloadingControllerModifier and TypeMethodDescriptionstatic voidReloadingCombinedConfigurationBuilder.obtainReloadingController(Collection<ReloadingController> subControllers, 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.reloadingModifier and TypeClassDescriptionclassA specializedReloadingControllerimplementation which manages an arbitrary number of otherReloadingControllerobjects.Fields in org.apache.commons.configuration2.reloading declared as ReloadingControllerModifier and TypeFieldDescriptionprivate final ReloadingControllerPeriodicReloadingTrigger.controllerThe associated reloading controller.Fields in org.apache.commons.configuration2.reloading with type parameters of type ReloadingControllerModifier and TypeFieldDescriptionprivate final Collection<ReloadingController> CombinedReloadingController.controllersThe collection with managed reloading controllers.Methods in org.apache.commons.configuration2.reloading that return ReloadingControllerModifier and TypeMethodDescriptionReloadingEvent.getController()Gets theReloadingControllerwhich caused this event.ReloadingControllerSupport.getReloadingController()Gets theReloadingControllerassociated with this object.Methods in org.apache.commons.configuration2.reloading that return types with arguments of type ReloadingControllerModifier and TypeMethodDescriptionprivate static Collection<ReloadingController> CombinedReloadingController.checkManagedControllers(Collection<? extends ReloadingController> subCtrls) Checks the collection with the passed in sub controllers and creates a defensive copy.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 ReloadingControllerModifier and TypeMethodDescriptionprivate static Collection<ReloadingController> CombinedReloadingController.checkManagedControllers(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 ReloadingControllerModifierConstructorDescriptionPeriodicReloadingTrigger(ReloadingController ctrl, Object ctrlParam, long triggerPeriod, TimeUnit unit) Creates a new instance ofPeriodicReloadingTriggerwith a default executor service.PeriodicReloadingTrigger(ReloadingController ctrl, Object ctrlParam, long triggerPeriod, TimeUnit unit, ScheduledExecutorService exec) Creates a new instance ofPeriodicReloadingTriggerand sets all parameters.ReloadingEvent(ReloadingController source, Object addData) Creates a new instance ofReloadingEventand initializes it.Constructor parameters in org.apache.commons.configuration2.reloading with type arguments of type ReloadingControllerModifierConstructorDescriptionCombinedReloadingController(Collection<? extends ReloadingController> subCtrls) Creates a new instance ofCombinedReloadingControllerand initializes it with theReloadingControllerobjects to be managed.