Enum GlobalConfiguration.LivenessProviderType
Liveness configuration that controls the type of the liveness protocol that silo use for membership.
Namespace: Orleans.Runtime.Configuration
Assembly: Orleans.Core.Legacy.dll
Syntax
public enum LivenessProviderType : int
Fields
| Name | Description |
|---|---|
| AdoNet | ADO.NET is used to store membership information. This option can be used in production. |
| AzureTable | AzureTable is used to store membership information. This option can be used in production. |
| Custom | Use custom provider from third-party assembly |
| MembershipTableGrain | Grain is used to store membership information. This option is not reliable and thus should only be used in local development setting. |
| NotSpecified | Default value to allow discrimination of override values. |
| ZooKeeper | Apache ZooKeeper is used to store membership information. This option can be used in production. |