TypeExecution

dotflow.core.types.execution.TypeExecution

Import

You can import the TypeExecution class with:

from dotflow.core.types import TypeExecution
Source code in dotflow/core/types/execution.py
 6
 7
 8
 9
10
11
12
13
14
15
16
17
class TypeExecution:
    """
    Import:
        You can import the **TypeExecution** class with:

            from dotflow.core.types import TypeExecution
    """

    SEQUENTIAL: Annotated[str, Doc("Sequential execution.")] = "sequential"
    BACKGROUND:  Annotated[str, Doc("Background execution.")] = "background"
    PARALLEL:  Annotated[str, Doc("Parallel execution.")] = "parallel"
    DATA_STORE:  Annotated[str, Doc("Data store execution.")] = "data_store"

SEQUENTIAL = 'sequential' class-attribute instance-attribute

Sequential execution.

BACKGROUND = 'background' class-attribute instance-attribute

Background execution.

PARALLEL = 'parallel' class-attribute instance-attribute

Parallel execution.

DATA_STORE = 'data_store' class-attribute instance-attribute

Data store execution.