Opens a new Backup Engine @param env The environment that the backup engine should operate within @param options Any options for the backup engine @return A new BackupEngine instance @throws RocksDBException thrown if the backup engine could not be opened
(final Env env,
final BackupableDBOptions options)
| 33 | * @throws RocksDBException thrown if the backup engine could not be opened |
| 34 | */ |
| 35 | public static BackupEngine open(final Env env, |
| 36 | final BackupableDBOptions options) throws RocksDBException { |
| 37 | return new BackupEngine(open(env.nativeHandle_, options.nativeHandle_)); |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Captures the state of the database in the latest backup |
no outgoing calls