Gemfire JavaDocs
Package org.apache.geode.admin
Interface BackupStatus
-
- All Known Subinterfaces:
BackupStatus
@Deprecated public interface BackupStatus
Deprecated.as of 7.0 use themanagement
package 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 java.util.Map<DistributedMember,java.util.Set<PersistentID>>
getBackedUpDiskStores()
Deprecated.Returns a map of disk stores that were successfully backed up.java.util.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
java.util.Map<DistributedMember,java.util.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
java.util.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
-
-