VMware GemFire Java API Reference
Package org.apache.geode.admin
Class RegionSubRegionSnapshot
- java.lang.Object
-
- org.apache.geode.admin.RegionSubRegionSnapshot
-
- All Implemented Interfaces:
Serializable,DataSerializable
@Deprecated public class RegionSubRegionSnapshot extends Object implements DataSerializable
Deprecated.as of 7.0 use themanagementpackage insteadClassRegionSubRegionSnapshotprovides information aboutRegions. This also provides the information about sub regions This class is used by the monitoring tool.- Since:
- GemFire 5.7
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.geode.DataSerializable
DataSerializable.Replaceable
-
-
Field Summary
Fields Modifier and Type Field Description protected intentryCountDeprecated.protected StringnameDeprecated.protected RegionSubRegionSnapshotparentDeprecated.protected SetsubRegionSnapshotsDeprecated.
-
Constructor Summary
Constructors Constructor Description RegionSubRegionSnapshot()Deprecated.RegionSubRegionSnapshot(Region reg)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanaddSubRegion(RegionSubRegionSnapshot snap)Deprecated.add the snapshot of sub regionvoidfromData(DataInput in)Deprecated.Reads the state of this object as primitive data from the givenDataInput.intgetEntryCount()Deprecated.StringgetFullPath()Deprecated.StringgetName()Deprecated.RegionSubRegionSnapshotgetParent()Deprecated.SetgetSubRegionSnapshots()Deprecated.voidsetEntryCount(int entryCount)Deprecated.voidsetName(String name)Deprecated.voidsetParent(RegionSubRegionSnapshot parent)Deprecated.voidsetSubRegionSnapshots(Set subRegionSnapshots)Deprecated.voidtoData(DataOutput out)Deprecated.Writes the state of this object as primitive data to the givenDataOutput.StringtoString()Deprecated.
-
-
-
Field Detail
-
name
protected String name
Deprecated.
-
entryCount
protected int entryCount
Deprecated.
-
parent
protected RegionSubRegionSnapshot parent
Deprecated.
-
subRegionSnapshots
protected Set subRegionSnapshots
Deprecated.
-
-
Constructor Detail
-
RegionSubRegionSnapshot
public RegionSubRegionSnapshot()
Deprecated.
-
RegionSubRegionSnapshot
public RegionSubRegionSnapshot(Region reg)
Deprecated.
-
-
Method Detail
-
addSubRegion
public boolean addSubRegion(RegionSubRegionSnapshot snap)
Deprecated.add the snapshot of sub region- Parameters:
snap- snapshot of sub region- Returns:
- true if operation is successful
-
getEntryCount
public int getEntryCount()
Deprecated.- Returns:
- get entry count of region
-
setEntryCount
public void setEntryCount(int entryCount)
Deprecated.- Parameters:
entryCount- entry count of region
-
getName
public String getName()
Deprecated.- Returns:
- name of region
-
setName
public void setName(String name)
Deprecated.- Parameters:
name- name of region
-
getSubRegionSnapshots
public Set getSubRegionSnapshots()
Deprecated.- Returns:
- subRegionSnapshots of all the sub regions
-
setSubRegionSnapshots
public void setSubRegionSnapshots(Set subRegionSnapshots)
Deprecated.- Parameters:
subRegionSnapshots- subRegionSnapshots of all the sub regions
-
getParent
public RegionSubRegionSnapshot getParent()
Deprecated.- Returns:
- snapshot of parent region
-
setParent
public void setParent(RegionSubRegionSnapshot parent)
Deprecated.- Parameters:
parent- snapshot of parent region
-
getFullPath
public String getFullPath()
Deprecated.- Returns:
- full path of region
-
toData
public void toData(DataOutput out) throws IOException
Deprecated.Description copied from interface:DataSerializableWrites the state of this object as primitive data to the givenDataOutput.Since 5.7 it is possible for any method call to the specified
DataOutputto throwGemFireRethrowable. It should not be caught by user code. If it is it must be rethrown.- Specified by:
toDatain interfaceDataSerializable- Parameters:
out- theDataOutputto write to- Throws:
IOException- A problem occurs while writing toout
-
fromData
public void fromData(DataInput in) throws IOException, ClassNotFoundException
Deprecated.Description copied from interface:DataSerializableReads the state of this object as primitive data from the givenDataInput.- Specified by:
fromDatain interfaceDataSerializable- Parameters:
in- theDataInputto read from- Throws:
IOException- A problem occurs while reading frominClassNotFoundException- A class could not be loaded while reading fromin
-
-