temporalio.workflow.ChildWorkflowHandle
class documentation
class ChildWorkflowHandle(_AsyncioTask[
Known subclasses: temporalio.worker._workflow_instance._ChildWorkflowHandle
Handle for interacting with a child workflow.
This is created via start_child_workflow.
This extends asyncio.Task and supports all task features.
| Async Method | signal |
Signal this child workflow. |
| Property | first |
Run ID for the workflow. |
| Property | id |
ID for the workflow. |
async def signal(self, signal: MethodSyncOrAsyncNoParam[):
async def signal(self, signal: MethodSyncOrAsyncSingleParam[, arg: ParamType):
async def signal(self, signal: Callable[, *, args: Sequence[):
async def signal(self, signal: str, arg: Any = temporalio.common._arg_unset, *, args: Sequence[ = []):
Run ID for the workflow.
ID for the workflow.