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_workflow call. |
Async Method | start |
Called for every WorkflowHandle.update and WorkflowHandle.start_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_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.update
and WorkflowHandle.start_update
call.