Class SnapshotView
- java.lang.Object
- 
- org.apache.ignite.spi.systemview.view.SnapshotView
 
- 
 public class SnapshotView extends Object Snapshot representation for aSystemView.
- 
- 
Field SummaryFields Modifier and Type Field Description static StringSNAPSHOT_SYS_VIEWSnapshot system view name.static StringSNAPSHOT_SYS_VIEW_DESCSnapshot system view description.
 - 
Constructor SummaryConstructors Constructor Description SnapshotView(org.apache.ignite.internal.processors.cache.persistence.snapshot.IncrementalSnapshotMetadata incMeta)SnapshotView(org.apache.ignite.internal.processors.cache.persistence.snapshot.SnapshotMetadata meta, Collection<String> cacheGrps)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringbaselineNodes()StringcacheGroups()StringconsistentId()IntegerincrementIndex()Stringname()LongsnapshotRecordSegment()LongsnapshotTime()Stringtype()
 
- 
- 
- 
Field Detail- 
SNAPSHOT_SYS_VIEWpublic static final String SNAPSHOT_SYS_VIEW Snapshot system view name.- See Also:
- Constant Field Values
 
 - 
SNAPSHOT_SYS_VIEW_DESCpublic static final String SNAPSHOT_SYS_VIEW_DESC Snapshot system view description.- See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
SnapshotViewpublic SnapshotView(org.apache.ignite.internal.processors.cache.persistence.snapshot.SnapshotMetadata meta, Collection<String> cacheGrps)- Parameters:
- meta- Snapshot metadata.
- cacheGrps- Cache group names that were included in the snapshot.
 
 - 
SnapshotViewpublic SnapshotView(org.apache.ignite.internal.processors.cache.persistence.snapshot.IncrementalSnapshotMetadata incMeta) - Parameters:
- incMeta- Incremental snapshot metadata.
 
 
- 
 - 
Method Detail- 
namepublic String name() - Returns:
- Snapshot name.
 
 - 
consistentIdpublic String consistentId() - Returns:
- Node consistent ID.
 
 - 
baselineNodespublic String baselineNodes() - Returns:
- Baseline nodes affected by the snapshot.
 
 - 
cacheGroupspublic String cacheGroups() - Returns:
- Cache group names that were included in the snapshot.
 
 - 
snapshotRecordSegmentpublic Long snapshotRecordSegment() - Returns:
- WAL segment that contains ClusterSnapshotRecordif exists.
 
 - 
incrementIndexpublic Integer incrementIndex() - Returns:
- Incremental snapshot index, nullfor full snapshot.
 
 - 
typepublic String type() - Returns:
- Snapshot type.
 
 - 
snapshotTimepublic Long snapshotTime() - Returns:
- Creation timestamp in milliseconds since Unix epoch.
 
 
- 
 
-