QGIS/python/core/auto_generated/processing/qgsprocessingalgrunnertask.sip.in
Nyall Dawson 3f6b490218 Sipify
2025-04-02 11:11:10 +10:00

74 lines
2.3 KiB
Plaintext

/************************************************************************
* This file has been generated automatically from *
* *
* src/core/processing/qgsprocessingalgrunnertask.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsProcessingAlgRunnerTask : QgsTask
{
%Docstring(signature="appended")
:py:class:`QgsTask` task which runs a :py:class:`QgsProcessingAlgorithm`
in a background task.
%End
%TypeHeaderCode
#include "qgsprocessingalgrunnertask.h"
%End
public:
QgsProcessingAlgRunnerTask( const QgsProcessingAlgorithm *algorithm,
const QVariantMap &parameters,
QgsProcessingContext &context,
QgsProcessingFeedback *feedback = 0,
QgsTask::Flags flags = QgsTask::CanCancel );
%Docstring
Constructor for QgsProcessingAlgRunnerTask. Takes an ``algorithm``,
algorithm ``parameters`` and processing ``context``.
Since QGIS 3.26, the ``flags`` argument allows control over task flags.
%End
virtual void cancel();
bool algorithmCanceled();
%Docstring
Returns ``True`` if the algorithm was canceled.
.. versionadded:: 3.26
%End
signals:
void executed( bool successful, const QVariantMap &results );
%Docstring
Emitted when the algorithm has finished execution. If the algorithm
completed execution without errors then ``successful`` will be ``True``.
The ``results`` argument contains the results reported by the algorithm.
%End
protected:
virtual bool run();
virtual void finished( bool result );
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/processing/qgsprocessingalgrunnertask.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/