Home
last modified time | relevance | path

Searched refs:allowIngestBehind (Results 1 – 5 of 5) sorted by relevance

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DDBOptions.java1101 public DBOptions setAllowIngestBehind(final boolean allowIngestBehind) { in setAllowIngestBehind() argument
1103 setAllowIngestBehind(nativeHandle_, allowIngestBehind); in setAllowIngestBehind()
1108 public boolean allowIngestBehind() { in allowIngestBehind() method in DBOptions
1110 return allowIngestBehind(nativeHandle_); in allowIngestBehind()
1380 final boolean allowIngestBehind); in setAllowIngestBehind() argument
1381 private native boolean allowIngestBehind(final long handle); in allowIngestBehind() method in DBOptions
DDBOptionsInterface.java1456 T setAllowIngestBehind(final boolean allowIngestBehind); in setAllowIngestBehind() argument
1464 boolean allowIngestBehind(); in allowIngestBehind() method
DOptions.java1147 public Options setAllowIngestBehind(final boolean allowIngestBehind) { in setAllowIngestBehind() argument
1149 setAllowIngestBehind(nativeHandle_, allowIngestBehind); in setAllowIngestBehind()
1154 public boolean allowIngestBehind() { in allowIngestBehind() method in Options
1156 return allowIngestBehind(nativeHandle_); in allowIngestBehind()
1999 final boolean allowIngestBehind); in setAllowIngestBehind() argument
2000 private native boolean allowIngestBehind(final long handle); in allowIngestBehind() method in Options
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DDBOptionsTest.java735 public void allowIngestBehind() { in allowIngestBehind() method in DBOptionsTest
737 assertThat(opt.allowIngestBehind()).isFalse(); in allowIngestBehind()
739 assertThat(opt.allowIngestBehind()).isTrue(); in allowIngestBehind()
DOptionsTest.java955 public void allowIngestBehind() { in allowIngestBehind() method in OptionsTest
957 assertThat(opt.allowIngestBehind()).isFalse(); in allowIngestBehind()
959 assertThat(opt.allowIngestBehind()).isTrue(); in allowIngestBehind()