Home
last modified time | relevance | path

Searched refs:maxBackgroundJobs (Results 1 – 8 of 8) sorted by relevance

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DMutableDBOptionsInterface.java13 T setMaxBackgroundJobs(int maxBackgroundJobs); in setMaxBackgroundJobs() argument
22 int maxBackgroundJobs(); in maxBackgroundJobs() method
DMutableDBOptions.java144 final int maxBackgroundJobs) { in setMaxBackgroundJobs() argument
145 return setInt(DBOption.max_background_jobs, maxBackgroundJobs); in setMaxBackgroundJobs()
149 public int maxBackgroundJobs() { in maxBackgroundJobs() method in MutableDBOptions.MutableDBOptionsBuilder
DDBOptions.java375 public DBOptions setMaxBackgroundJobs(final int maxBackgroundJobs) { in setMaxBackgroundJobs() argument
377 setMaxBackgroundJobs(nativeHandle_, maxBackgroundJobs); in setMaxBackgroundJobs()
382 public int maxBackgroundJobs() { in maxBackgroundJobs() method in DBOptions
384 return maxBackgroundJobs(nativeHandle_); in maxBackgroundJobs()
1242 private native void setMaxBackgroundJobs(long handle, int maxBackgroundJobs); in setMaxBackgroundJobs() argument
1243 private native int maxBackgroundJobs(long handle); in maxBackgroundJobs() method in DBOptions
DOptions.java509 public int maxBackgroundJobs() { in maxBackgroundJobs() method in Options
511 return maxBackgroundJobs(nativeHandle_); in maxBackgroundJobs()
515 public Options setMaxBackgroundJobs(final int maxBackgroundJobs) { in setMaxBackgroundJobs() argument
517 setMaxBackgroundJobs(nativeHandle_, maxBackgroundJobs); in setMaxBackgroundJobs()
1859 private native int maxBackgroundJobs(long handle); in maxBackgroundJobs() method in Options
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DMutableDBOptionsTest.java26 assertThat(builder.maxBackgroundJobs()).isEqualTo(5); in builder()
DDBOptionsTest.java260 public void maxBackgroundJobs() { in maxBackgroundJobs() method in DBOptionsTest
264 assertThat(opt.maxBackgroundJobs()).isEqualTo(intValue); in maxBackgroundJobs()
DOptionsTest.java475 public void maxBackgroundJobs() { in maxBackgroundJobs() method in OptionsTest
479 assertThat(opt.maxBackgroundJobs()).isEqualTo(intValue); in maxBackgroundJobs()
/rocksdb-6.9/java/benchmark/src/main/java/org/rocksdb/benchmark/
DDbBenchmark.java1116 max_background_jobs(defaultOptions_.maxBackgroundJobs(),