TimestampedData<E> constructor

TimestampedData<E>(
  1. int modificationTime,
  2. E data
)

Initialize a newly created holder to associate the given data with the given modificationTime.

Implementation

TimestampedData(this.modificationTime, this.data);