Package org.onosproject.store.primitives
Interface PartitionAdminService
-
public interface PartitionAdminService
Administrative interface for partition membership changes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<PartitionClientInfo>
partitionClientInfo()
Returns theinformation
for partition clients.List<PartitionInfo>
partitionInfo()
Returns theinformation
for existing partitions.void
snapshot()
Takes a snapshot of all partitions.void
snapshot(PartitionId partitionId)
Takes a snapshot of the given partition.
-
-
-
Method Detail
-
partitionInfo
List<PartitionInfo> partitionInfo()
Returns theinformation
for existing partitions.- Returns:
- list of
PartitionInfo
-
partitionClientInfo
List<PartitionClientInfo> partitionClientInfo()
Returns theinformation
for partition clients.- Returns:
- list of
PartitionClientInfo
-
snapshot
void snapshot()
Takes a snapshot of all partitions.
-
snapshot
void snapshot(PartitionId partitionId)
Takes a snapshot of the given partition.- Parameters:
partitionId
- the partition to snapshot
-
-