Home
last modified time | relevance | path

Searched refs:flushOptions (Results 1 – 11 of 11) sorted by relevance

/rocksdb-6.9/java/src/test/java/org/rocksdb/
DFlushOptionsTest.java16 try (final FlushOptions flushOptions = new FlushOptions()) { in waitForFlush() argument
17 assertThat(flushOptions.waitForFlush()).isTrue(); in waitForFlush()
18 flushOptions.setWaitForFlush(false); in waitForFlush()
19 assertThat(flushOptions.waitForFlush()).isFalse(); in waitForFlush()
25 try (final FlushOptions flushOptions = new FlushOptions()) { in allowWriteStall() argument
26 assertThat(flushOptions.allowWriteStall()).isFalse(); in allowWriteStall()
27 flushOptions.setAllowWriteStall(true); in allowWriteStall()
28 assertThat(flushOptions.allowWriteStall()).isTrue(); in allowWriteStall()
DFlushTest.java31 final FlushOptions flushOptions = new FlushOptions() in flush()
33 assertThat(flushOptions.waitForFlush()).isTrue(); in flush()
43 db.flush(flushOptions); in flush()
DMemoryUtilTest.java44 final FlushOptions flushOptions = in getApproximateMemoryUsageByType()
64 db.flush(flushOptions); in getApproximateMemoryUsageByType()
114 final FlushOptions flushOptions = in getApproximateMemoryUsageByTypeMultiple()
127 db.flush(flushOptions); in getApproximateMemoryUsageByTypeMultiple()
DTableFilterTest.java43 final FlushOptions flushOptions = in readOptions()
61 db.flush(flushOptions, columnFamilyHandles); in readOptions()
DRocksMemEnvTest.java38 final FlushOptions flushOptions = new FlushOptions() in memEnvFillAndReopen()
66 db.flush(flushOptions); in memEnvFillAndReopen()
DBlockBasedTableConfigTest.java190 try (final FlushOptions flushOptions = new FlushOptions(); in blockCacheCompressedIntegration() argument
200 db.flush(flushOptions); in blockCacheCompressedIntegration()
DRocksDBTest.java1261 try (final FlushOptions flushOptions = new FlushOptions() in compactFiles() argument
1272 db.flush(flushOptions, cfHandles); in compactFiles()
1365 final FlushOptions flushOptions = new FlushOptions()) { in flush() argument
1366 db.flush(flushOptions); in flush()
/rocksdb-6.9/java/jmh/src/main/java/org/rocksdb/jmh/
DGetBenchmarks.java83 try (final FlushOptions flushOptions = new FlushOptions() in setup() argument
85 db.flush(flushOptions); in setup()
DMultiGetBenchmarks.java92 try (final FlushOptions flushOptions = new FlushOptions() in setup() argument
94 db.flush(flushOptions); in setup()
/rocksdb-6.9/java/src/test/java/org/rocksdb/util/
DBytewiseComparatorTest.java228 try (final FlushOptions flushOptions = new FlushOptions(); in doRandomIterationTest() argument
232 db.flush(flushOptions); in doRandomIterationTest()
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DRocksDB.java3632 public void flush(final FlushOptions flushOptions) in flush() argument
3634 flush(flushOptions, (List<ColumnFamilyHandle>) null); in flush()
3649 public void flush(final FlushOptions flushOptions, in flush() argument
3652 flush(flushOptions, in flush()
3671 public void flush(final FlushOptions flushOptions, in flush() argument
3674 flush(nativeHandle_, flushOptions.nativeHandle_, in flush()