QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
|
Periodic system cache strategy for server configuration. More...
#include <qgsconfigcache.h>
Public Member Functions | |
QgsPeriodicCacheStrategy (int interval=3000) | |
Creates a new periodic strategy. More... | |
void | attach (QgsConfigCache *owner) override |
Attaches cache to this strategy. More... | |
int | checkInterval () const |
Returns the invalidation check interval. More... | |
void | entryInserted (const QString &path) override |
Called when an entry is inserted. More... | |
void | entryRemoved (const QString &path) override |
Called when an entry is removed from cache. More... | |
QString | name () const override |
The name of the strategy. More... | |
void | setCheckInterval (int msec) |
Sets the invalidation check interval for PeriodicStrategy. More... | |
Public Member Functions inherited from QgsAbstractCacheStrategy | |
virtual | ~QgsAbstractCacheStrategy ()=default |
Periodic system cache strategy for server configuration.
Definition at line 197 of file qgsconfigcache.h.
QgsPeriodicCacheStrategy::QgsPeriodicCacheStrategy | ( | int | interval = 3000 | ) |
Creates a new periodic strategy.
interval | The invalidation check interval in milliseconds |
Definition at line 284 of file qgsconfigcache.cpp.
|
overridevirtual |
Attaches cache to this strategy.
Implements QgsAbstractCacheStrategy.
Definition at line 289 of file qgsconfigcache.cpp.
|
inline |
Returns the invalidation check interval.
Definition at line 219 of file qgsconfigcache.h.
|
overridevirtual |
Called when an entry is inserted.
path | The path of the project |
Implements QgsAbstractCacheStrategy.
Definition at line 302 of file qgsconfigcache.cpp.
|
overridevirtual |
Called when an entry is removed from cache.
path | The path of the project |
Implements QgsAbstractCacheStrategy.
Definition at line 296 of file qgsconfigcache.cpp.
|
inlineoverridevirtual |
The name of the strategy.
Implements QgsAbstractCacheStrategy.
Definition at line 208 of file qgsconfigcache.h.
void QgsPeriodicCacheStrategy::setCheckInterval | ( | int | msec | ) |
Sets the invalidation check interval for PeriodicStrategy.
If msec is set to a positive value then the cache will check for invalidation every msec milliseconds
Definition at line 311 of file qgsconfigcache.cpp.