Share via


PartitionScheme Enumeration

 

Applies To: Azure, Windows 10, Windows 8, Windows 8.1, Windows Server 2012 R2

Enumerates the ways that a service can be partitioned.

Namespace:   System.Fabric.Description
Assembly:  System.Fabric (in System.Fabric.dll)

Syntax

public enum PartitionScheme

Members

Member name Description
Invalid

All Service Fabric enumerations reserve the "Invalid" value.

Named

Indicates that the service is named-partitioned. This means that each partition is associated with a string name.

Singleton

Indicates that the service is singleton-partitioned. This means that there is only one partition, or the service is not partitioned.

UniformInt64Range

Indicates that the service is uniform int64 range-partitioned. This means that each partition owns a range of int64 keys.

See Also

System.Fabric.Description Namespace

Return to top