class _TracingWorkflowOutboundInterceptor(temporalio.worker.WorkflowOutboundInterceptor): (source)
Constructor: _TracingWorkflowOutboundInterceptor(next, add_temporal_spans)
Undocumented
Inherited from WorkflowOutboundInterceptor:
| Method | info |
Called for every temporalio.workflow.info call. |
| Async Method | start |
Intercept a Temporal System Nexus operation started by a workflow. |
| Instance Variable | next |
Undocumented |
| Method | _next |
Undocumented |
temporalio.worker.WorkflowOutboundInterceptor, add_temporal_spans: bool):
(source)
¶
Create the outbound interceptor.
| Parameters | |
next:temporalio.worker.WorkflowOutboundInterceptor | The next interceptor in the chain. The default implementation of all calls is to delegate to the next interceptor. |
addbool | Undocumented |
temporalio.worker.SignalChildWorkflowInput):
(source)
¶
Called for every
temporalio.workflow.ChildWorkflowHandle.signal call.
temporalio.worker.SignalExternalWorkflowInput):
(source)
¶
Called for every
temporalio.workflow.ExternalWorkflowHandle.signal call.
temporalio.worker.StartActivityInput) -> temporalio.workflow.ActivityHandle:
(source)
¶
Called for every temporalio.workflow.start_activity and
temporalio.workflow.execute_activity call.
temporalio.worker.StartChildWorkflowInput) -> temporalio.workflow.ChildWorkflowHandle:
(source)
¶
Called for every temporalio.workflow.start_child_workflow
and temporalio.workflow.execute_child_workflow call.
temporalio.worker.StartLocalActivityInput) -> temporalio.workflow.ActivityHandle:
(source)
¶
Called for every temporalio.workflow.start_local_activity
and temporalio.workflow.execute_local_activity call.
temporalio.worker.StartNexusOperationInput[ Any, Any]) -> temporalio.workflow.NexusOperationHandle[ Any]:
(source)
¶
Called for every temporalio.workflow.NexusClient.start_operation call.
temporalio.nexus.system.workflow_service.models.SignalWithStartWorkflowRequest) -> temporalio.workflow.NexusOperationHandle[ temporalio.nexus.system.workflow_service.models.SignalWithStartWorkflowResponse]:
(source)
¶
Intercept the SignalWithStartWorkflow operation.