interface IWorkflowEngineProcessor {
    processSignalAsync(
        request: IWorkflowEngineProcessRequest,
        requestSignature?: null | string,
        additionalInfo?: null | IStorage,
        requestModifier?: null | (request: CardRequest) => void,
    ): Promise<IWorkflowEngineProcessResult>;
    sendAsyncSignalAsync(
        request: IWorkflowEngineProcessRequest,
        requestSignature?: null | string,
        requestModifier?: null | (request: CardRequest) => void,
    ): Promise<ValidationResult>;
}

Methods

MMNEPVFCICPMFPCPTTAAATR