PartitionSchemeDescription Class

Definition

Describes how the service is partitioned. This is the parent entity from which the actual partitioning scheme descriptions are derived.

[System.Runtime.Serialization.KnownType(typeof(System.Fabric.Description.SingletonPartitionSchemeDescription))]
[System.Runtime.Serialization.KnownType(typeof(System.Fabric.Description.UniformInt64RangePartitionSchemeDescription))]
[System.Runtime.Serialization.KnownType(typeof(System.Fabric.Description.NamedPartitionSchemeDescription))]
public abstract class PartitionSchemeDescription
[<System.Runtime.Serialization.KnownType(typeof(System.Fabric.Description.SingletonPartitionSchemeDescription))>]
[<System.Runtime.Serialization.KnownType(typeof(System.Fabric.Description.UniformInt64RangePartitionSchemeDescription))>]
[<System.Runtime.Serialization.KnownType(typeof(System.Fabric.Description.NamedPartitionSchemeDescription))>]
type PartitionSchemeDescription = class
Public MustInherit Class PartitionSchemeDescription
Inheritance
PartitionSchemeDescription
Derived
Attributes

Constructors

PartitionSchemeDescription(PartitionScheme)

Instantiates a PartitionSchemeDescription class.

PartitionSchemeDescription(PartitionSchemeDescription)

Instantiates a PartitionSchemeDescription class with parameters from another PartitionSchemeDescription object.

Properties

Scheme

Specifies how the service is partitioned. A common use is that it enables programmers to cast the description into SingletonPartitionSchemeDescription, NamedPartitionSchemeDescription, or UniformInt64RangePartitionSchemeDescription.

Applies to