Home
last modified time | relevance | path

Searched refs:allowBlockingFlush (Results 1 – 2 of 2) sorted by relevance

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DIngestExternalFileOptions.java27 final boolean allowBlockingFlush) { in IngestExternalFileOptions() argument
29 allowGlobalSeqNo, allowBlockingFlush)); in IngestExternalFileOptions()
107 public boolean allowBlockingFlush() { in allowBlockingFlush() method in IngestExternalFileOptions
108 return allowBlockingFlush(nativeHandle_); in allowBlockingFlush()
120 final boolean allowBlockingFlush) { in setAllowBlockingFlush() argument
121 setAllowBlockingFlush(nativeHandle_, allowBlockingFlush); in setAllowBlockingFlush()
207 final boolean allowGlobalSeqNo, final boolean allowBlockingFlush); in newIngestExternalFileOptions() argument
218 private native boolean allowBlockingFlush(final long handle); in allowBlockingFlush() method in IngestExternalFileOptions
220 final boolean allowBlockingFlush); in setAllowBlockingFlush() argument
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DIngestExternalFileOptionsTest.java36 final boolean allowBlockingFlush = rand.nextBoolean(); in createExternalSstFileInfoWithParameters()
39 allowGlobalSeqNo, allowBlockingFlush)) { in createExternalSstFileInfoWithParameters() argument
44 assertThat(options.allowBlockingFlush()).isEqualTo(allowBlockingFlush); in createExternalSstFileInfoWithParameters()
79 public void allowBlockingFlush() { in allowBlockingFlush() method in IngestExternalFileOptionsTest
82 final boolean allowBlockingFlush = rand.nextBoolean(); in allowBlockingFlush()
83 options.setAllowBlockingFlush(allowBlockingFlush); in allowBlockingFlush()
84 assertThat(options.allowBlockingFlush()).isEqualTo(allowBlockingFlush); in allowBlockingFlush()