class documentation
class _TracingClientOutboundInterceptor(temporalio.client.OutboundInterceptor): (source)
Constructor: _TracingClientOutboundInterceptor(next, root)
Undocumented
| Method | __init__ |
Create the outbound interceptor. |
| Async Method | query |
Called for every WorkflowHandle.query call. |
| Async Method | signal |
Called for every WorkflowHandle.signal call. |
| Async Method | start |
Called for every Client.start_update_with_start_workflow and Client.execute_update_with_start_workflow call. |
| Async Method | start |
Called for every Client.start_workflow call. |
| Async Method | start |
Called for every WorkflowHandle.start_update and WorkflowHandle.execute_update call. |
| Instance Variable | root |
Undocumented |
Inherited from OutboundInterceptor:
def __init__(self, next:
temporalio.client.OutboundInterceptor, root: TracingInterceptor):
(source)
¶
Create the outbound interceptor.
| Parameters | |
next:temporalio.client.OutboundInterceptor | The next interceptor in the chain. The default implementation of all calls is to delegate to the next interceptor. |
root:TracingInterceptor | Undocumented |
async def start_update_with_start_workflow(self, input:
temporalio.client.StartWorkflowUpdateWithStartInput) -> temporalio.client.WorkflowUpdateHandle[ Any]:
(source)
¶
Called for every Client.start_update_with_start_workflow and Client.execute_update_with_start_workflow call.
async def start_workflow(self, input:
temporalio.client.StartWorkflowInput) -> temporalio.client.WorkflowHandle[ Any, Any]:
(source)
¶
Called for every Client.start_workflow call.
async def start_workflow_update(self, input:
temporalio.client.StartWorkflowUpdateInput) -> temporalio.client.WorkflowUpdateHandle[ Any]:
(source)
¶
Called for every WorkflowHandle.start_update and WorkflowHandle.execute_update call.