class documentation

Outbound interceptor to wrap calls made from within workflows.

This should be extended by any workflow outbound interceptors.

def __init__(self, next: WorkflowOutboundInterceptor): (source)

Create the outbound interceptor.

Parameters
next:WorkflowOutboundInterceptorThe next interceptor in the chain. The default implementation of all calls is to delegate to the next interceptor.
async def start_nexus_operation(self, input: StartNexusOperationInput[InputT, OutputT]) -> temporalio.workflow.NexusOperationHandle[OutputT]: (source)

Undocumented