Timestamped<T> constructor
Timestamped<T> (
- DateTime timestamp,
- 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);