taipy.core.Submittable
Instance of an entity that can be submitted for execution.
A submittable holds functions that can be used to build the execution directed acyclic graph.
Attributes:
Name | Type | Description |
---|---|---|
subscribers |
List[Callable]
|
The list of callbacks to be called on |
data_nodes_being_edited()
¶
Return the set of data nodes of the submittable entity that are being edited.
Returns:
Type | Description |
---|---|
Set[DataNode]
|
The set of data nodes that are being edited. |
get_inputs()
¶
Return the set of input data nodes of the submittable entity.
Returns:
Type | Description |
---|---|
Set[DataNode]
|
The set of input data nodes. |
get_intermediate()
¶
Return the set of intermediate data nodes of the submittable entity.
Returns:
Type | Description |
---|---|
Set[DataNode]
|
The set of intermediate data nodes. |
get_outputs()
¶
Return the set of output data nodes of the submittable entity.
Returns:
Type | Description |
---|---|
Set[DataNode]
|
The set of output data nodes. |
is_ready_to_run()
¶
Indicate if the entity is ready to be run.
Returns:
Type | Description |
---|---|
bool
|
True if the given entity is ready to be run. False otherwise. |