UNPKG

bullmq

Version:

Queue for messages and jobs based on Redis

14 lines (13 loc) 308 B
/** * Retry method options */ export interface RetryOptions { /** * Attempts made counter is reset to zero when retrying the job. */ resetAttemptsMade?: boolean; /** * Attempts started counter is reset to zero when retrying the job. */ resetAttemptsStarted?: boolean; }