seq
2.0.0
|
Execution of Template classes. More...
Public Member Functions | |
def | run (self) |
![]() | |
def | __attrs_post_init__ (self) |
Inputs as dictionary, key by id. More... | |
def | input_task_list (self) |
Get input tasks that are not finished. More... | |
def | get_nodes (self, l) |
Get nodes from list od ids. More... | |
def | get_task (self) |
Get my task object. More... | |
def | abort (self) |
Aborts the asyncio task. More... | |
def | reset (self, resume=False) |
Creates a new task. More... | |
def | resume_context (self) |
context to make sure the resume flag is set to False at the end More... | |
Additional Inherited Members | |
![]() | |
id = attr.ib() | |
node = attr.ib(repr=False) | |
inputs = attr.ib(default=attr.Factory(list), repr=False) | |
resume = attr.ib(default=False, repr=False) | |
Execution of Template classes.
def lib.seqtask.TplTask.run | ( | self | ) |
Simple run method. Awaits inputs, then schedules execution of its own node (either a function or template).
Reimplemented from lib.seqtask.SeqTask.