class documentation
class WorkflowInboundInterceptor: (source)
Known subclasses: temporalio.contrib.opentelemetry.TracingWorkflowInboundInterceptor
, temporalio.testing._workflow._AssertionErrorWorkflowInboundInterceptor
Constructor: WorkflowInboundInterceptor(next)
Inbound interceptor to wrap outbound creation, workflow execution, and signal/query handling.
This should be extended by any workflow inbound interceptors.
Method | __init__ |
Create the inbound interceptor. |
Async Method | execute |
Called to run the workflow. |
Async Method | handle |
Called to handle a query. |
Async Method | handle |
Called to handle a signal. |
Async Method | handle |
Called to handle an update's handler. |
Method | handle |
Called to handle an update's validation stage. |
Method | init |
Initialize with an outbound interceptor. |
Instance Variable | next |
Undocumented |
Create the inbound interceptor.
Parameters | |
next:WorkflowInboundInterceptor | The next interceptor in the chain. The default implementation of all calls is to delegate to the next interceptor. |
overridden in
temporalio.contrib.opentelemetry.TracingWorkflowInboundInterceptor
, temporalio.testing._workflow._AssertionErrorWorkflowInboundInterceptor
Called to run the workflow.
overridden in
temporalio.contrib.opentelemetry.TracingWorkflowInboundInterceptor
, temporalio.testing._workflow._AssertionErrorWorkflowInboundInterceptor
Called to handle a signal.