Timestamped<T> constructor

Timestamped<T>(
  1. DateTime timestamp,
  2. T value
)

Constructs a snapshot of a Stream, containing the Stream's event at the specified timestamp as value.

Implementation

Timestamped(this.timestamp, this.value);