public class OverrideableThresholdingDaoImpl extends AbstractThresholdingDao implements OverrideableThresholdingDao
JSON_STORE_KEY
Constructor and Description |
---|
OverrideableThresholdingDaoImpl() |
Modifier and Type | Method and Description |
---|---|
ThresholdingConfig |
getReadOnlyConfig()
Get the current configuration.
|
void |
onConfigChanged()
Notify the DAO that the configuration it tracks has changed.
|
void |
overrideConfig(InputStream config) |
void |
overrideConfig(ThresholdingConfig config) |
void |
reload()
Instructs the DAO to reload the configuration from the backing data source immediately.
|
void |
saveConfig()
Save the current configuration held by the DAO.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getWriteableConfig
public void overrideConfig(ThresholdingConfig config)
overrideConfig
in interface OverrideableDao<ThresholdingConfig>
public void overrideConfig(InputStream config)
overrideConfig
in interface OverrideableDao<ThresholdingConfig>
public void saveConfig()
WriteableDao
The configuration held by the DAO may not necessarily be the same configuration reference as returned by
WriteableDao.getWriteableConfig()
if the config has been reloaded in between calls. This implies any changes to the
reference
returned by WriteableDao.getWriteableConfig()
will not be reflected when saved in this case.
saveConfig
in interface WriteableDao<ThresholdingConfig>
public void onConfigChanged()
WriteableDao
Call this method after updating the filesystem configuration directly or after providing a config extension.
onConfigChanged
in interface WriteableDao<ThresholdingConfig>
public ThresholdingConfig getReadOnlyConfig()
ReadableDao
ReadableDao.reload()
.
The value returned by this method may be the result of merging multiple objects together. As a result, mutations
to this object may not be visible to other readers and are not permitted.
For cases where mutation and/or persistence of changes is required see WriteableDao.getWriteableConfig()
.getReadOnlyConfig
in interface ReadableDao<ThresholdingConfig>
public void reload()
ReadableDao
ReadableDao.getReadOnlyConfig()
yields the up to date configuration.reload
in interface ReadableDao<ThresholdingConfig>
Copyright © 2021. All rights reserved.