Files
deb-python-taskflow/doc/source/atoms.rst
Anastasia Karpinska cb118de354 Move 'inputs and outputs' to developers docs
Change-Id: Id4385c234f78ef179c43b23d5eb93cf448059498
2014-03-27 15:24:26 +02:00

783 B

Atoms, Tasks and Retries

An atom is the smallest unit in taskflow which acts as the base for other classes. Atoms have a name and a version (if applicable). Atom is expected to name desired input values (requirements) and name outputs (provided values), see arguments_and_results page for complete reference about it.

taskflow.atom

Task

A task (derived from an atom) is the smallest possible unit of work that can have an execute & rollback sequence associated with it.

taskflow.task

Retry

A retry (derived from an atom) is a special unit that handles flow errors, controlls flow execution and can retry it with another parameters if needed.

taskflow.retry