Number of points the datastore can hold.
The cumulative sum of all value inputs ever made.
The datastore is used in FIFO fashion, with newest element in front Meaning: .shift() to add, .pop() to remove
Unique Id.
Number of points that the datastore can hold.
Total number of interactions all players made.
Add a value to the aggregator.
The new input value.
Calculates the average over the inputs made.
Used to calculate the running average over this number of points.
Used to calculate the running average over this number of seconds.
The average as number literal.
Calculates the cumulative sum over all inputs made.
The cumulative sum as number literal.
Calculates the total number of player interactions ever made.
The number of interactions as number literal.
Get a value without using AggregatorMethod type.
The latest number from the datastore.
Calculates the median over the inputs made.
Used to calculate the running median over this number of points.
Used to calculate the running median over this number of seconds.
The median as number literal.
Get a value using AggregatorMethod type.
The aggregator method.
The aggregated number.
Reset internal values.
Generated using TypeDoc
The model which actually handles new points/data and calculates the aggregation for a given AggragatorValue.