PartitionScheme Enum

Definition

Enumerates the ways that a service can be partitioned.

public enum PartitionScheme
type PartitionScheme = 
Public Enum PartitionScheme
Inheritance
PartitionScheme

Fields

Invalid 0

All Service Fabric enumerations reserve the "Invalid" value.

Named 3

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

Singleton 1

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

UniformInt64Range 2

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

Applies to