File tasks options

interface FileTasksOptions {
    archiveFolder?: string;
    deadLetterFolder?: string;
    errorStrategy?: ErrorStrategy;
    postProcessingStrategy?: PostProcessingStrategy;
    pushers: Pusher[];
    retryOptions?: RetryOptions;
}

Hierarchy (View Summary)

Properties

archiveFolder?: string

Archive folder for processed files

deadLetterFolder?: string

Dead-letter folder for files with keying errors

errorStrategy?: ErrorStrategy

Determine the error strategy for files with errors

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