예제 #1
0
파일: backup.go 프로젝트: daaku/gorocksdb
// Release close the backup engine and cleans up state
// The backups already taken remain on storage.
func (b *BackupEngine) Release() {
	C.rocksdb_backup_engine_close(b.c)
	b.c = nil
}
예제 #2
0
파일: backup.go 프로젝트: pavanka/gorocksdb
// Close close the backup engine and cleans up state
// The backups already taken remain on storage.
func (self *BackupEngine) Close() {
	C.rocksdb_backup_engine_close(self.c)
	self.c = nil
}