TimestampedMeasurement

data class TimestampedMeasurement(val timestamp: Long, val measurement: Measurement<*>)

Measurement with associated timestamp indicating when the measurement was taken.

Constructors

Link copied to clipboard
constructor(timestamp: Long, measurement: Measurement<*>)

Properties

Link copied to clipboard

Measurement being taken.

Link copied to clipboard

Timestamp of measurement being taken in epoch seconds.

Functions

Link copied to clipboard
open override fun toString(): String