Home
last modified time | relevance | path

Searched refs:targetPathId (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DCompactRangeOptions.java137 public int targetPathId() { in targetPathId() method in CompactRangeOptions
138 return targetPathId(nativeHandle_); in targetPathId()
148 public CompactRangeOptions setTargetPathId(final int targetPathId) { in setTargetPathId() argument
149 setTargetPathId(nativeHandle_, targetPathId); in setTargetPathId()
225 private native int targetPathId(final long handle); in targetPathId() method in CompactRangeOptions
227 final int targetPathId); in setTargetPathId() argument
DRocksDB.java3201 final int targetPathId) throws RocksDBException { in compactRange() argument
3202 compactRange(null, changeLevel, targetLevel, targetPathId); in compactRange()
3241 final boolean changeLevel, final int targetLevel, final int targetPathId) in compactRange() argument
3246 options.setTargetPathId(targetPathId); in compactRange()
3286 final int targetPathId) throws RocksDBException { in compactRange() argument
3287 compactRange(null, begin, end, changeLevel, targetLevel, targetPathId); in compactRange()
3328 final int targetLevel, final int targetPathId) in compactRange() argument
3333 options.setTargetPathId(targetPathId); in compactRange()
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DCompactRangeOptionsTest.java67 public void targetPathId() { in targetPathId() method in CompactRangeOptionsTest
71 assertThat(opt.targetPathId()).isEqualTo(value); in targetPathId()
74 assertThat(opt.targetPathId()).isEqualTo(value); in targetPathId()