AggregateStateStorageSettings constructor

const AggregateStateStorageSettings({
  1. Duration ttl = TTL,
  2. bool eager = false,
  3. bool useCache = false,
  4. int threshold = 1000,
})

Construct an AggregateStateStorageSettings instance

Implementation

const AggregateStateStorageSettings({
  this.ttl = TTL,
  this.eager = false,
  this.useCache = false,
  this.threshold = 1000,
});