VMware GemFire Java API Reference
Package org.apache.geode.admin
Interface BackupStatus
-
- All Known Subinterfaces:
BackupStatus
@Deprecated public interface BackupStatus
Deprecated.as of 7.0 use themanagementpackage insteadThe status of a backup operation, returned byAdminDistributedSystem.backupAllMembers(java.io.File,java.io.File).- Since:
- GemFire 6.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Map<DistributedMember,Set<PersistentID>>getBackedUpDiskStores()Deprecated.Returns a map of disk stores that were successfully backed up.Set<PersistentID>getOfflineDiskStores()Deprecated.Returns the set of disk stores that were known to be offline at the time of the backup.
-
-
-
Method Detail
-
getBackedUpDiskStores
Map<DistributedMember,Set<PersistentID>> getBackedUpDiskStores()
Deprecated.Returns a map of disk stores that were successfully backed up. The key is an online distributed member. The value is the set of disk stores on that distributed member.- Returns:
- a map of disk stores that were successfully backed up
-
getOfflineDiskStores
Set<PersistentID> getOfflineDiskStores()
Deprecated.Returns the set of disk stores that were known to be offline at the time of the backup. These members were not backed up. If this set is not empty the backup may not contain a complete snapshot of any partitioned regions in the distributed system.- Returns:
- the set of disk stores that were known to be offline at the time of the backup
-
-