UNPKG

antfarm

Version:

File automation framework for ants.

85 lines (84 loc) 2.28 kB
import { FolderNest } from "../nest/folderNest"; import { Nest } from "../nest/nest"; import { Job } from "../job/job"; import { Environment } from "../environment/environment"; import { WebhookNest } from "../nest/webhookNest"; import { FtpNest } from "../nest/ftpNest"; /** * Tunnels are runnable work flow units that can watch nests. */ export declare class Tunnel { protected _name: string; protected _nests: Nest[]; protected _run_list: any[]; protected _run_sync_list: any[]; protected _run_fail: any; protected e: Environment; protected job_counter: number; protected match_obj: { queue: any[]; run: any; pattern: any; orphan_minutes: any; }; constructor(e: Environment, tunnelName: string); toString(): string; name: string; readonly nests: Nest[]; readonly runList: any[]; readonly runSyncList: any[]; runFail: any; /** * Instructs the tunnel to watch a nest for new jobs. * @param nest */ watch(nest: FolderNest | WebhookNest | FtpNest): void; arrive(job: Job, nest?: Nest): void; /** * Run program logic asynchronously. * @param callback */ run(callback: any): void; /** * Run program logic synchronously. * @param callback */ runSync(callback: any): void; /** * Failed jobs runner. * @param callback */ fail(callback: any): void; /** * Asynchronous run event. * @param job * @param nest */ protected executeRun(job: Job, nest: Nest): void; /** * Synchronous run event. * @param job * @param nest */ protected executeRunSync(job: Job, nest: Nest): void; /** * Fail run event. * @param job * @param nest * @param reason */ executeFail(job: Job, nest: Nest, reason: string): void; /** * Interface for matching two or more _files together based on an array of glob filename patterns. * @param pattern * @param orphanMinutes * @param callback */ match(pattern: string[] | string, orphanMinutes: number, callback: any): void; /** * Match execution * @param job * @param nest */ protected executeMatch(job: Job, nest: Nest): void; }