QGIS API Documentation
2.0.1-Dufour
|
Abstract base class for cache indices. More...
#include <qgscacheindex.h>
Public Member Functions | |
QgsAbstractCacheIndex () | |
virtual | ~QgsAbstractCacheIndex () |
virtual void | flushFeature (const QgsFeatureId fid)=0 |
Is called, whenever a feature is removed from the cache. | |
virtual void | flush ()=0 |
Sometimes, the whole cache changes its state and its easier to just withdraw everything. | |
virtual void | requestCompleted (QgsFeatureRequest featureRequest, QgsFeatureIds fids) |
Implement this method to update the the indices, in case you need information contained by the request to properly index. | |
virtual bool | getCacheIterator (QgsFeatureIterator &featureIterator, const QgsFeatureRequest &featureRequest)=0 |
Is called, when a feature request is issued on a cached layer. |
Abstract base class for cache indices.
Definition at line 29 of file qgscacheindex.h.
QgsAbstractCacheIndex::QgsAbstractCacheIndex | ( | ) |
Definition at line 19 of file qgscacheindex.cpp.
|
virtual |
Definition at line 23 of file qgscacheindex.cpp.
|
pure virtual |
Sometimes, the whole cache changes its state and its easier to just withdraw everything.
In this case, this method is issued. Be sure to clear all cache information in here.
Implemented in QgsCacheIndexFeatureId.
|
pure virtual |
Is called, whenever a feature is removed from the cache.
You should update your indexes, so they become invalid in case this feature was required to successfuly answer a request.
Implemented in QgsCacheIndexFeatureId.
Referenced by QgsVectorLayerCache::featureRemoved().
|
pure virtual |
Is called, when a feature request is issued on a cached layer.
If this cache index is able to completely answer the feature request, it will return true and write the list of feature ids of cached features to cachedFeatures. If it is not able it will return false and the cachedFeatures state is undefined.
featureIterator | A reference to a QgsFeatureIterator. A valid featureIterator will be assigned in case this index is able to answer the request and the return value is true. |
featureRequest | The feature request, for which this index is queried. |
Implemented in QgsCacheIndexFeatureId.
Referenced by QgsVectorLayerCache::getFeatures().
|
virtual |
Implement this method to update the the indices, in case you need information contained by the request to properly index.
(E.g. spatial index) Does nothing by default
featureRequest | The feature request that was answered |
fids | The feature ids that have been returned |
Reimplemented in QgsCacheIndexFeatureId.
Definition at line 27 of file qgscacheindex.cpp.
Referenced by QgsVectorLayerCache::requestCompleted().