Flush all memory table data. Note: it must be ensured that the FlushOptions instance is not GC'ed before this method finishes. If the wait parameter is set to false, flush processing is asynchronous. @param flushOptions org.rocksdb.FlushOptions instance. @throws RocksDBExcept
(final FlushOptions flushOptions)
| 2381 | * part of the library. |
| 2382 | */ |
| 2383 | public void flush(final FlushOptions flushOptions) |
| 2384 | throws RocksDBException { |
| 2385 | flush(nativeHandle_, flushOptions.nativeHandle_); |
| 2386 | } |
| 2387 | |
| 2388 | /** |
| 2389 | * <p>Flush all memory table data.</p> |
no outgoing calls