Class: QgsFeedback¶
Base class for feedback objects to be used for cancellation of something running in a worker thread.
The class may be used as is or it may be subclassed for extended functionality for a particular operation (e.g. report progress or pass some data for preview).
When cancel() is called, the internal code has two options to
check for cancellation state:
if the worker thread uses an event loop (e.g. for network communication), the code can make a queued connection to
canceled()signal and handle the cancellation in its slot.if the worker thread does not use an event loop, it can poll
isCanceled()method regularly to see if the operation should be canceled.
The class is meant to be created and destroyed in the main thread.
For map rendering, the object may be created in constructor of a
QgsMapLayerRenderer subclass and available with
QgsMapLayerRenderer.feedback() method. When a map rendering
job gets canceled, the cancel() method is called on the
feedback object of all layers.
Class Hierarchy¶
Base classes¶
Subclasses¶
Base class for providing feedback from a processing algorithm. |
|
Feedback object tailored for raster block reading. |
- class qgis.core.QgsFeedback[source]¶
Bases:
QObject- __init__(parent: QObject | None = None)
Construct a feedback object
- Parameters:
parent (Optional[QObject] = None)
- cancel(self)[source]¶
Tells the internal routines that the current operation should be canceled. This should be run by the main thread
- signal canceled[source]¶
pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL
types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.
- isCanceled(self) bool[source]¶
Tells whether the operation has been canceled already
- Return type:
bool
- processedCount(self) int¶
Returns the current processed objects count reported by the feedback object. Depending on how the feedback object is used processed count reporting may not be supported. The returned value is an unsigned long integer and starts from 0.
See also
See also
Added in version 3.24.
- Return type:
int
- signal processedCountChanged[source]¶
pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL
types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.
- progress(self) float[source]¶
Returns the current progress reported by the feedback object. Depending on how the feedback object is used progress reporting may not be supported. The returned value is in percentage and ranges from 0-100.
See also
See also
- Return type:
float
- signal progressChanged[source]¶
pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL
types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.
- setProcessedCount(self, processedCount: int)[source]¶
Sets the current processed objects count for the feedback object. The
processedCountargument is an unsigned long integer and starts from 0.See also
See also
Added in version 3.24.
- Parameters:
processedCount (int)