Registry for workflow and activity interceptors that are executed in order for each workflow or activity execution.

interface InterceptorRegistry {
    activityInterceptors: ActivityInterceptor[];
    interceptors: WorkflowInterceptor[];
}

Implemented by

Properties

activityInterceptors: ActivityInterceptor[]

Array of registered activity interceptors that will wrap individual proxied activity calls in the order they were registered (first registered = outermost wrapper).

interceptors: WorkflowInterceptor[]

Array of registered workflow interceptors that will wrap workflow execution in the order they were registered (first registered = outermost wrapper).