class documentation
class _ContextPropagationClientOutboundInterceptor(temporalio.client.OutboundInterceptor): (source)
Constructor: _ContextPropagationClientOutboundInterceptor(next, payload_converter)
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.start_update and WorkflowHandle.execute_update call. |
| Instance Variable | _payload |
Undocumented |
Inherited from OutboundInterceptor:
def __init__(self, next:
temporalio.client.OutboundInterceptor, payload_converter: temporalio.converter.PayloadConverter):
(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. |
payloadtemporalio.converter.PayloadConverter | 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.start_update and WorkflowHandle.execute_update call.