UNPKG

@5minds/processcube_engine

Version:

The ProcessCube Engine. Stores and executes BPMNs.

15 lines (14 loc) 1.11 kB
import { Model } from '@5minds/processcube_engine_sdk'; import { EventMiddlewareHandler, FlowNodeInstanceDatabaseAdapter } from '../../../Tools/index'; import { EscalationEventService } from '../../EscalationEventService'; import { ProcessInstance } from '../../ProcessInstance'; import { FlowNodeHandlerFactory } from '../FlowNodeHandlerFactory'; import { EndEventHandler } from './EndEventHandler'; export declare class EndEscalationEventHandler extends EndEventHandler { protected escalationEventService: EscalationEventService; constructor(eventMiddlewareHandler: EventMiddlewareHandler, flowNodeHandlerFactory: FlowNodeHandlerFactory, flowNodeInstanceDatabaseAdapter: FlowNodeInstanceDatabaseAdapter, escalationEndEventModel: Model.Events.EscalationEndEvent, processInstance: ProcessInstance, escalationEventService: EscalationEventService); protected get escalationEndEvent(): Model.Events.EscalationEndEvent; protected persistOnExit(): Promise<void>; protected startExecution(): Promise<Array<Model.Base.FlowNode>>; protected executeHandler(): Promise<Array<Model.Base.FlowNode>>; }