PartitionScheme Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates the ways that a service can be partitioned.
public enum PartitionScheme
type PartitionScheme =
Public Enum PartitionScheme
- Inheritance
-
PartitionScheme
Fields
Name | Value | Description |
---|---|---|
Invalid | 0 | All Service Fabric enumerations reserve the "Invalid" value. |
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. |
Named | 3 | Indicates that the service is named-partitioned. This means that each partition is associated with a string name. |