QueueOpts constructor

QueueOpts({
  1. int? maxRetryDelay,
  2. int? minRetryDelay,
  3. double? backoffFactor,
  4. double? backoffJitter,
  5. int? maxAttempts,
  6. int? maxItems,
  7. BatchOpts? batch,
  8. double? timerScaleFactor,
})

Implementation

QueueOpts({
  this.maxRetryDelay,
  this.minRetryDelay,
  this.backoffFactor,
  this.backoffJitter,
  this.maxAttempts,
  this.maxItems,
  this.batch,
  this.timerScaleFactor,
});