Task.completed

Get completed property.

class Task
@property
bool
completed
()

Return Value

Type: bool

Whether the task has completed, meaning its callback (if set) has been invoked.

This can only happen after gio.task.Task.returnPointer, gio.task.Task.returnError or one of the other return functions have been called on the task. However, it is not guaranteed to happen immediately after those functions are called, as the task’s callback may need to be scheduled to run in a different thread.

That means it is **not safe** to use this property to track whether a return function has been called on the #GTask. Callers must do that tracking themselves, typically by linking the lifetime of the #GTask to the control flow of their code.

This property is guaranteed to change from false to true exactly once.

The #GObject::notify signal for this change is emitted in the same main context as the task’s callback, immediately after that callback is invoked.