explicitly mark backup interfaces non-extensible (#6654)
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/6654 Reviewed By: cheng-chang Differential Revision: D20878094 Pulled By: ajkr fbshipit-source-id: 94d2561bdb6ffb7fe3773ca07d475337600a5b57
This commit is contained in:
parent
c8c739a877
commit
f08630b914
@ -223,6 +223,7 @@ class BackupStatistics {
|
||||
|
||||
// A backup engine for accessing information about backups and restoring from
|
||||
// them.
|
||||
// BackupEngineReadOnly is not extensible.
|
||||
class BackupEngineReadOnly {
|
||||
public:
|
||||
virtual ~BackupEngineReadOnly() {}
|
||||
@ -286,6 +287,7 @@ class BackupEngineReadOnly {
|
||||
};
|
||||
|
||||
// A backup engine for creating new backups.
|
||||
// BackupEngine is not extensible.
|
||||
class BackupEngine {
|
||||
public:
|
||||
virtual ~BackupEngine() {}
|
||||
|
Loading…
Reference in New Issue
Block a user