public class OnmsThresholdingDao extends AbstractThresholdingDao implements WriteableThresholdingDao
JSON_STORE_KEY
Constructor and Description |
---|
OnmsThresholdingDao(JsonStore jsonStore) |
Modifier and Type | Method and Description |
---|---|
ThresholdingConfig |
getReadOnlyConfig()
Get the current configuration.
|
ThresholdingConfig |
getWriteableConfig()
This method returns the mutable configuration object for which any changes made to it will be persisted and
reflected after a call to
WriteableDao.saveConfig() . |
void |
onConfigChanged()
Notify the DAO that the configuration it tracks has changed.
|
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.
|
public OnmsThresholdingDao(JsonStore jsonStore) throws IOException
IOException
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 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 ThresholdingConfig getWriteableConfig()
WriteableDao
WriteableDao.saveConfig()
.getWriteableConfig
in interface WriteableDao<ThresholdingConfig>
public void reload()
ReadableDao
ReadableDao.getReadOnlyConfig()
yields the up to date configuration.reload
in interface ReadableDao<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>
Copyright © 2021. All rights reserved.