Home
last modified time | relevance | path

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

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DBackupableDBOptions.java294 public BackupableDBOptions setRestoreRateLimit(long restoreRateLimit) { in setRestoreRateLimit() argument
296 restoreRateLimit = (restoreRateLimit <= 0) ? 0 : restoreRateLimit; in setRestoreRateLimit()
297 setRestoreRateLimit(nativeHandle_, restoreRateLimit); in setRestoreRateLimit()
308 public long restoreRateLimit() { in restoreRateLimit() method in BackupableDBOptions
310 return restoreRateLimit(nativeHandle_); in restoreRateLimit()
453 private native long restoreRateLimit(long handle); in restoreRateLimit() method in BackupableDBOptions
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DBackupableDBOptionsTest.java152 public void restoreRateLimit() { in restoreRateLimit() method in BackupableDBOptionsTest
157 assertThat(backupableDBOptions.restoreRateLimit()). in restoreRateLimit()
161 assertThat(backupableDBOptions.restoreRateLimit()). in restoreRateLimit()
323 options.restoreRateLimit(); in failRestoreRateLimitIfDisposed()