UNPKG

n8n

Version:

n8n Workflow Automation Tool

12 lines (11 loc) 563 B
import { Logger } from '@n8n/backend-common'; import { AgentExecutionService } from './agent-execution.service'; import { AgentExecutionRepository } from './repositories/agent-execution.repository'; export declare class AgentInterruptedExecutionSweeper { private readonly logger; private readonly executionRepository; private readonly executionService; static readonly LIVENESS_GRACE_MS: number; constructor(logger: Logger, executionRepository: AgentExecutionRepository, executionService: AgentExecutionService); sweep(): Promise<void>; }