Tasks

Ibis Birdbrain’s Flow executes one or more Tasks to accomplish its goal. A Task is a single unit of work that takes a Message as input and returns a Message as output.

Usage

from ibis_birdbrain.tasks import Task, Tasks

task = Task()
task
<ibis_birdbrain.tasks.Task at 0x14264fa90>
Back to top