Registry for workflow interceptors that are executed in order for each workflow execution

interface InterceptorRegistry {
    interceptors: WorkflowInterceptor[];
}

Properties

Properties

interceptors: WorkflowInterceptor[]

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