class documentation

Inbound interceptor to wrap Nexus operation starting and cancelling.

This should be extended by any Nexus operation inbound interceptors.

Method __init__ Create the inbound interceptor.
Async Method execute_nexus_operation_cancel Called to cancel an in progress Nexus operation
Async Method execute_nexus_operation_start Called to start a Nexus operation
Instance Variable next Undocumented

Create the inbound interceptor.

Parameters
next:NexusOperationInboundInterceptorThe next interceptor in the chain. The default implementation of all calls is to delegate to the next interceptor.
async def execute_nexus_operation_cancel(self, input: ExecuteNexusOperationCancelInput): (source)

Called to cancel an in progress Nexus operation

Undocumented