public class OnmsThreshdDao extends AbstractThreshdDao implements WriteableThreshdDao
JSON_STORE_KEY
Constructor and Description |
---|
OnmsThreshdDao(JsonStore jsonStore) |
Modifier and Type | Method and Description |
---|---|
ThreshdConfiguration |
getReadOnlyConfig()
Get the current configuration.
|
ThreshdConfiguration |
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()
Subclasses should call this reload after they have performed their reload logic.
|
void |
saveConfig()
Save the current configuration held by the DAO.
|
interfaceInPackage, rebuildPackageIpListMap
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
interfaceInPackage, rebuildPackageIpListMap, serviceInPackageAndEnabled
public OnmsThreshdDao(JsonStore jsonStore) throws IOException
IOException
public ThreshdConfiguration 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<ThreshdConfiguration>
public ThreshdConfiguration getWriteableConfig()
WriteableDao
WriteableDao.saveConfig()
.getWriteableConfig
in interface WriteableDao<ThreshdConfiguration>
public void reload()
AbstractThreshdDao
reload
in interface ReadableDao<ThreshdConfiguration>
reload
in class AbstractThreshdDao
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<ThreshdConfiguration>
public void onConfigChanged()
WriteableDao
Call this method after updating the filesystem configuration directly or after providing a config extension.
onConfigChanged
in interface WriteableDao<ThreshdConfiguration>
Copyright © 2021. All rights reserved.