Package org.gridgain.internal.snapshots
Interface TableTombstoneProvider
public interface TableTombstoneProvider
Tombstones provider for table. The table reference should be encapsulated to implementation.
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.ignite.internal.util.Cursor<org.apache.ignite.internal.storage.tombstones.Tombstone>cursor(int partitionId, org.apache.ignite.internal.hlc.HybridTimestamp from, org.apache.ignite.internal.hlc.HybridTimestamp to) Returns cursor with tombstones for specified partition and timestamp range.
-
Method Details
-
cursor
org.apache.ignite.internal.util.Cursor<org.apache.ignite.internal.storage.tombstones.Tombstone> cursor(int partitionId, org.apache.ignite.internal.hlc.HybridTimestamp from, org.apache.ignite.internal.hlc.HybridTimestamp to) Returns cursor with tombstones for specified partition and timestamp range. Strong contract of this method that all tombstones in cursor MUST be sorted by row id.- Parameters:
partitionId- Partition identifier.from- Lower bound for tombstone's commit timestamp, excluding.to- Upper bound for tombstone's commit timestamp, including.
-