class documentation

Undocumented

Method __init__ Create the inbound interceptor.
Async Method execute_activity Called to invoke the activity.
Instance Variable root Undocumented

Inherited from ActivityInboundInterceptor:

Method init Initialize with an outbound interceptor.
Instance Variable next Undocumented

Create the inbound interceptor.

Parameters
next:temporalio.worker.ActivityInboundInterceptorThe next interceptor in the chain. The default implementation of all calls is to delegate to the next interceptor.
root:TracingInterceptorUndocumented
async def execute_activity(self, input: temporalio.worker.ExecuteActivityInput) -> Any: (source)

Called to invoke the activity.

Undocumented