|
| def | __init__ (self, *args, **kw) |
| |
| def | __attrs_post_init__ (self) |
| |
| def | context (self) |
| | Get context from the running Sequence. More...
|
| |
| def | state (self) |
| | Gets the node state. More...
|
| |
| def | state (self, value) |
| | Sets the node state. More...
|
| |
| def | make_sequence (self, parent_tpl=None) |
| | Builds this sequence execution graph. More...
|
| |
| def | __call__ (self, resume=False) |
| |
| def | result (self) |
| | Node's result. More...
|
| |
| def | result (self, val) |
| |
| def | end_node (self) |
| |
| def | start_node (self) |
| |
| def | full_state (self) |
| | Gets the node state. More...
|
| |
| def | in_error (self) |
| |
| def | skip (self) |
| |
| def | skip (self, flag=True) |
| |
| def | in_error (self, flag=True) |
| |
| def | make_sequence (self) |
| | does nothing More...
|
| |
| def | make_task (self, node, input_list, resume) |
| | Creates the task object that executes the node. More...
|
| |
| def | pause (self) |
| |
| def | resume (self) |
| |
|
| | f = attr.ib(default=None, repr=False) |
| |
| | parent_tpl = attr.ib(default=None, repr=False) |
| |
| | current_node = cv.ContextVar("current_seq", default=None) |
| |
| | serial_number = attr.ib(kw_only=True, init=False, default=0) |
| |
| | id = attr.ib(default=None, kw_only=True) |
| |
| | name = attr.ib(default=None, kw_only=True) |
| |
| | runtime_flags = attr.ib(default=0, kw_only=True) |
| |
| | deps = attr.ib(default=attr.Factory(list), repr=False, kw_only=True, init=False) |
| |
| | description = attr.ib(default="", kw_only=True) |
| |
| | exception = attr.ib(init=False, default=None, repr=False) |
| |
| | can_skip = attr.ib(default=True, init=False) |
| |
| | hide = attr.ib(default=False, init=False) |
| |
| | t_start = attr.ib(init=False, default=None, repr=False) |
| |
| | t_end = attr.ib(init=False, default=None, repr=False) |
| |
| | running_checkpoint |
| |
This is the finish Node.
marks node as unskippable