SiloStatus 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.
Possible statuses of a silo.
public enum SiloStatus
[Orleans.GenerateSerializer]
public enum SiloStatus
type SiloStatus =
[<Orleans.GenerateSerializer>]
type SiloStatus =
Public Enum SiloStatus
- Inheritance
-
SiloStatus
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No known status. |
Created | 1 | This silo was just created, but not started yet. |
Joining | 2 | This silo has just started, but not ready yet. It is attempting to join the cluster. |
Active | 3 | This silo is alive and functional. |
ShuttingDown | 4 | This silo is shutting itself down. |
Stopping | 5 | This silo is stopping itself down. |
Dead | 6 | This silo is deactivated/considered to be dead. |