taskflow library

Classes

ConditionalTask
The task executes only when given condition satisfied.
ParallelTask
A task that runs its children parallelly.
SequentialTask
A task that runs its children sequentially.
SimpleTask
A simple task that wraps a TaskFunc.
Task
A derivable and composable unit in taskflow.
TaskFlowContext
Context that shared by all tasks in a flow.

Typedefs

ConditionFunc = Future<bool> Function()
TaskFunc = Future<void> Function(TaskFlowContext)