putRecord method

  1. @override
void putRecord(
  1. K key,
  2. Record<V> value
)
override

Stores record without updating the HLC. Meant for subclassing, clients should use put() instead. Make sure to call refreshCanonicalTime() if using this method directly.

Implementation

@override
void putRecord(K key, Record<V> value) {
  _map[key] = value;
  _controller.add(MapEntry(key, value.value));
}