kumulant

DecayingSumResult

@Serializable
@SerialName(value = "DecayingSumResult")
data class DecayingSumResult(val sum: Double, val timestampNanos: Long) : Result(source)

Snapshot of an exponentially time-decayed sum at timestampNanos.

Constructors

Link copied to clipboard
constructor(sum: Double, timestampNanos: Long)

Properties

Link copied to clipboard
val sum: Double

Time-decayed sum at timestampNanos.

Link copied to clipboard

Wall-clock timestamp (nanoseconds) at which the snapshot was taken.

DecayingSumResult

constructor(sum: Double, timestampNanos: Long)(source)

sum

Time-decayed sum at timestampNanos.

timestampNanos

Wall-clock timestamp (nanoseconds) at which the snapshot was taken.