WriteOptions constructor

WriteOptions({
  1. int batchSize = 1000,
  2. int flushInterval = 1000,
  3. int retryJitter = 200,
  4. int retryInterval = 5000,
  5. int maxRetryDelay = 125000,
  6. int maxRetryTime = 180000,
  7. int exponentialBase = 2,
  8. int maxRetries = 5,
  9. int maxBufferLines = 100000,
  10. Map<String, String>? defaultTags,
  11. WritePrecision precision = WritePrecision.ns,
  12. bool gzip = false,
})

Implementation

WriteOptions(
    {this.batchSize = 1000,
    this.flushInterval = 1000,
    this.retryJitter = 200,
    this.retryInterval = 5000,
    this.maxRetryDelay = 125000,
    this.maxRetryTime = 180000,
    this.exponentialBase = 2,
    this.maxRetries = 5,
    this.maxBufferLines = 100000,
    this.defaultTags,
    this.precision = WritePrecision.ns,
    this.gzip = false});