SegmentedBytesStore
is the extension of the StateStore contract for segmented-bytes state stores that FIXME.
Method | Description |
---|---|
|
KeyValueIterator<Bytes, byte[]> all() Used when…FIXME |
|
KeyValueIterator<Bytes, byte[]> fetch(
Bytes keyFrom,
Bytes keyTo,
long from,
long to)
KeyValueIterator<Bytes, byte[]> fetch(
Bytes key,
long from,
long to) Used when…FIXME |
|
KeyValueIterator<Bytes, byte[]> fetchAll(
long from,
long to) Used when…FIXME |
|
byte[] get(Bytes key) Used when…FIXME |
|
void put(
Bytes key,
byte[] value) Used when…FIXME |
|
void remove(Bytes key) Used when…FIXME |
Note
|
AbstractRocksDBSegmentedBytesStore is the only known direct implementation of the SegmentedBytesStore Contract in Kafka Streams. |