putRecord abstract method

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

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

void putRecord(K key, Record<V> value);