CavalliumDBEngine/src/main/java/it/cavallium/dbengine/database/disk/LLLocalGroupedKeyReactiveRocksIterator.java

24 lines
653 B
Java
Raw Normal View History

2021-03-14 03:13:19 +01:00
package it.cavallium.dbengine.database.disk;
import it.cavallium.dbengine.buffers.Buf;
2021-03-14 03:13:19 +01:00
import it.cavallium.dbengine.database.LLRange;
2022-07-19 23:45:39 +02:00
import java.util.function.Supplier;
2021-03-14 03:13:19 +01:00
import org.rocksdb.ReadOptions;
public class LLLocalGroupedKeyReactiveRocksIterator extends LLLocalGroupedReactiveRocksIterator<Buf> {
2021-03-14 03:13:19 +01:00
2021-10-20 01:51:34 +02:00
public LLLocalGroupedKeyReactiveRocksIterator(RocksDBColumn db,
2021-03-14 03:13:19 +01:00
int prefixLength,
LLRange range,
2022-07-19 23:45:39 +02:00
Supplier<ReadOptions> readOptions,
2022-03-24 23:56:23 +01:00
boolean smallRange) {
super(db, prefixLength, range, readOptions, true, false, smallRange);
2021-03-14 03:13:19 +01:00
}
@Override
public Buf getEntry(Buf key, Buf value) {
assert key != null;
return key.copy();
2021-03-14 03:13:19 +01:00
}
}