ForkJoinTask
Object Hierarchy:
Description:
public abstract class ForkJoinTask<
G> :
Object,
Task<
G>
A base class for fork-join tasks that run within a worker pool.
Note. Fork-join tasks are not reusable.
Content:
Classes:
Properties:
- public int depth { get; set; }
The split depth of this task.
- public Executor executor { get; }
The executor that will invoke this task
- protected bool is_cancelled { public get; }
Whether or not this task have been cancelled.
- public bool is_root { get; }
Whether or not this task is root.
- public int max_depth { get; }
The max task split depth. unlimited if negative
- public ForkJoinTask<G>? parent { get; }
Gets the parent of this task.
- protected Promise<G> promise { public get; }
The promise to set a result of future
.
- public ForkJoinTask<G> root { get; }
Gets the root task.
- public SharedResult<G> shared_result { get; }
Gets the shared result.
- public int64 threshold { get; }
The sequential computation threshold.
Creation methods:
Methods:
Inherited Members:
All known members inherited from class GLib.Object
All known members inherited from interface Gpseq.Task