Uses of Interface
org.apache.commons.configuration2.sync.Synchronizer
Packages that use Synchronizer
Package
Description
The Configuration main package.
This package contains the implementations of configuration builder classes used to create new
Configuration
objects.
A package containing interfaces and classes related to synchronization of configurations.
-
Uses of Synchronizer in org.apache.commons.configuration2
Methods in org.apache.commons.configuration2 that return SynchronizerModifier and TypeMethodDescriptionstatic Synchronizer
ConfigurationUtils.cloneSynchronizer
(Synchronizer sync) Creates a clone of the specifiedSynchronizer
.final Synchronizer
AbstractConfiguration.getSynchronizer()
Gets the object responsible for synchronizing this configuration.Methods in org.apache.commons.configuration2 with parameters of type SynchronizerModifier and TypeMethodDescriptionstatic Synchronizer
ConfigurationUtils.cloneSynchronizer
(Synchronizer sync) Creates a clone of the specifiedSynchronizer
.final void
AbstractConfiguration.setSynchronizer
(Synchronizer synchronizer) Sets the object responsible for synchronizing this configuration. -
Uses of Synchronizer in org.apache.commons.configuration2.builder
Methods in org.apache.commons.configuration2.builder with parameters of type SynchronizerModifier and TypeMethodDescriptionBasicBuilderParameters.setSynchronizer
(Synchronizer sync) Sets theSynchronizer
object for this configuration.BasicBuilderProperties.setSynchronizer
(Synchronizer sync) Sets theSynchronizer
object for this configuration. -
Uses of Synchronizer in org.apache.commons.configuration2.sync
Classes in org.apache.commons.configuration2.sync that implement SynchronizerModifier and TypeClassDescriptionenum
An implementation of theSynchronizer
interface which does not perform any synchronization.class
A special implementation ofSynchronizer
based on the JDK'sReentrantReadWriteLock
class.Methods in org.apache.commons.configuration2.sync that return SynchronizerModifier and TypeMethodDescriptionSynchronizerSupport.getSynchronizer()
Gets theSynchronizer
used by this object.Methods in org.apache.commons.configuration2.sync with parameters of type SynchronizerModifier and TypeMethodDescriptionvoid
SynchronizerSupport.setSynchronizer
(Synchronizer sync) Sets theSynchronizer
to be used by this object.