Returns an iterator that is positioned at a write-batch containing seq_number. If the sequence number is non existent, it returns an iterator at the first available seq_no after the requested seq_no. Must set WAL_ttl_seconds or WAL_size_limit_MB to large values to use this api, else the W
(final long sequenceNumber)
| 2775 | * from native-side. |
| 2776 | */ |
| 2777 | public TransactionLogIterator getUpdatesSince(final long sequenceNumber) |
| 2778 | throws RocksDBException { |
| 2779 | return new TransactionLogIterator( |
| 2780 | getUpdatesSince(nativeHandle_, sequenceNumber)); |
| 2781 | } |
| 2782 | |
| 2783 | public void setOptions(final ColumnFamilyHandle columnFamilyHandle, |
| 2784 | final MutableColumnFamilyOptions mutableColumnFamilyOptions) |
no outgoing calls