QGIS API Documentation 3.40.0-Bratislava (b56115d8743)
|
Class defining I/O filters for QGIS Server and implemented in plugins. More...
#include <qgsserverfilter.h>
Public Member Functions | |
QgsServerFilter (QgsServerInterface *serverInterface) | |
Constructor QgsServerInterface passed to plugins constructors and must be passed to QgsServerFilter instances. | |
virtual | ~QgsServerFilter ()=default |
virtual bool | onProjectReady () |
Method called when the QgsProject instance is ready to be used to perform the request, just before entering the main switch for core services. | |
virtual bool | onRequestReady () |
Method called when the QgsRequestHandler is ready and populated with parameters, just before entering the main switch for core services. | |
virtual bool | onResponseComplete () |
Method called when the QgsRequestHandler processing has done and the response is ready, just after the main switch for core services and before final sending response to FCGI stdout. | |
virtual bool | onSendResponse () |
Method called when the QgsRequestHandler sends its data to FCGI stdout. | |
virtual Q_DECL_DEPRECATED void | requestReady () |
Method called when the QgsRequestHandler is ready and populated with parameters, just before entering the main switch for core services. | |
virtual Q_DECL_DEPRECATED void | responseComplete () |
Method called when the QgsRequestHandler processing has done and the response is ready, just after the main switch for core services and before final sending response. | |
virtual Q_DECL_DEPRECATED void | sendResponse () |
Method called when the QgsRequestHandler sends its data to FCGI stdout. | |
QgsServerInterface * | serverInterface () |
Returns the QgsServerInterface instance. | |
Class defining I/O filters for QGIS Server and implemented in plugins.
Filters can define any (or none) of the following hooks:
Definition at line 43 of file qgsserverfilter.h.
QgsServerFilter::QgsServerFilter | ( | QgsServerInterface * | serverInterface | ) |
Constructor QgsServerInterface passed to plugins constructors and must be passed to QgsServerFilter instances.
QgsServerFilter Class defining I/O filters for QGIS Server and implemented in plugins.
Definition at line 31 of file qgsserverfilter.cpp.
|
virtualdefault |
|
virtual |
Method called when the QgsProject instance is ready to be used to perform the request, just before entering the main switch for core services.
Definition at line 59 of file qgsserverfilter.cpp.
|
virtual |
Method called when the QgsRequestHandler is ready and populated with parameters, just before entering the main switch for core services.
Definition at line 51 of file qgsserverfilter.cpp.
|
virtual |
Method called when the QgsRequestHandler processing has done and the response is ready, just after the main switch for core services and before final sending response to FCGI stdout.
Definition at line 64 of file qgsserverfilter.cpp.
|
virtual |
Method called when the QgsRequestHandler sends its data to FCGI stdout.
This normally occurs at the end of core services processing just after the responseComplete() plugin hook. For streaming services (like WFS on getFeature requests, sendResponse() might have been called several times before the response is complete: in this particular case, sendResponse() is called once for each feature before hitting responseComplete()
Definition at line 72 of file qgsserverfilter.cpp.
|
virtual |
Method called when the QgsRequestHandler is ready and populated with parameters, just before entering the main switch for core services.
This method is considered as deprecated and
Definition at line 36 of file qgsserverfilter.cpp.
|
virtual |
Method called when the QgsRequestHandler processing has done and the response is ready, just after the main switch for core services and before final sending response.
This method is considered as deprecated and
Definition at line 41 of file qgsserverfilter.cpp.
|
virtual |
Method called when the QgsRequestHandler sends its data to FCGI stdout.
This normally occurs at the end of core services processing just after the responseComplete() plugin hook. For streaming services (like WFS on getFeature requests, sendResponse() might have been called several times before the response is complete: in this particular case, sendResponse() is called once for each feature before hitting responseComplete()
This method is considered as deprecated and
Definition at line 46 of file qgsserverfilter.cpp.
|
inline |
Returns the QgsServerInterface instance.
Definition at line 58 of file qgsserverfilter.h.