Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Key range behavior would be consistent with the existing ReadOnlyKeyValueStore.range(K from, K to) behavior.

 

SessionStore interface

Code Block
KeyValueIterator<Windowed<K>, AGG> findSessions(final K keyFrom, final K keyTo, long earliestSessionEndTime, final long latestSessionStartTime);

Key range behavior would be consistent with the existing ReadOnlyKeyValueStore.range(K from, K to) behavior.

Proposed Changes

This KIP proposes to add the interface described above and implement range scan returning all the entries in the given key range.

...