class documentation
class ActivityOutboundInterceptor: (source)
Known subclasses: temporalio.worker._activity._ActivityOutboundImpl
Constructor: ActivityOutboundInterceptor(next)
Outbound interceptor to wrap calls made from within activities.
This should be extended by any activity outbound interceptors.
| Method | __init__ |
Create the outbound interceptor. |
| Method | heartbeat |
Called for every temporalio.activity.heartbeat call. |
| Method | info |
Called for every temporalio.activity.info call. |
| Instance Variable | next |
Undocumented |
overridden in
temporalio.worker._activity._ActivityOutboundImplCreate the outbound interceptor.
| Parameters | |
next:ActivityOutboundInterceptor | The next interceptor in the chain. The default implementation of all calls is to delegate to the next interceptor. |
overridden in
temporalio.worker._activity._ActivityOutboundImplCalled for every temporalio.activity.heartbeat call.
overridden in
temporalio.worker._activity._ActivityOutboundImplCalled for every temporalio.activity.info call.