Support for iterating over the contents of a batch. @param handler A handler that is called back for each update present in the batch @throws RocksDBException If we cannot iterate over the batch
(final Handler handler)
| 58 | * @throws RocksDBException If we cannot iterate over the batch |
| 59 | */ |
| 60 | public void iterate(final Handler handler) throws RocksDBException { |
| 61 | iterate(nativeHandle_, handler.nativeHandle_); |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Retrieve the serialized version of this batch. |
no outgoing calls