Engine options

interface EngineOptions {
    archiveFolder?: string;
    componentId: string;
    deadLetterFolder?: string;
    errorStrategy?: ErrorStrategy;
    failedOperationDelay?: number;
    name: string;
    postProcessingStrategy?: PostProcessingStrategy;
    pushers: Pusher[];
    retryOptions?: RetryOptions;
}

Hierarchy (View Summary)

Properties

archiveFolder?: string

Archive folder for processed files

componentId: string

The component identifier

deadLetterFolder?: string

Dead-letter folder for files with keying errors

errorStrategy?: ErrorStrategy

Determine the error strategy for files with errors

failedOperationDelay?: number

Delay between retries failed file processing operations

name: string

The name of the watcher

postProcessingStrategy?: PostProcessingStrategy

Determine the post-processing strategy for files without errors

pushers: Pusher[]

Pushers to send the files to

retryOptions?: RetryOptions

Retry options for file operations