class documentation
class ExternalWorkflowHandle(Generic[
Known subclasses: temporalio.worker._workflow_instance._ExternalWorkflowHandle
Handle for interacting with an external workflow.
This is created via get_external_workflow_handle
or
get_external_workflow_handle_for
.
Async Method | cancel |
Send a cancellation request to this external workflow. |
Async Method | signal |
Signal this external workflow. |
Property | id |
ID for the workflow. |
Property | run |
Run ID for the workflow if any. |
Send a cancellation request to this external workflow.
This will fail if the workflow cannot accept the request (e.g. if the workflow is not found).