DeactivationReasonCode 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.
An informational reason code for deactivation.
[Orleans.GenerateSerializer]
public enum DeactivationReasonCode
[<Orleans.GenerateSerializer>]
type DeactivationReasonCode =
Public Enum DeactivationReasonCode
- Inheritance
-
DeactivationReasonCode
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No reason provided. |
ShuttingDown | 1 | The process is currently shutting down. |
ActivationFailed | 2 | Activation of the grain failed. |
InternalFailure | 3 | This activation is affected by an internal failure. |
ActivationIdle | 4 | This activation is idle. |
ActivationUnresponsive | 5 | This activation is unresponsive to commands or requests. |
DuplicateActivation | 6 | Another instance of this grain has been activated. |
IncompatibleRequest | 7 | This activation received a request which cannot be handled by the locally running process. |
ApplicationError | 8 | An application error occurred. |
ApplicationRequested | 9 | The application requested that this activation deactivate. |
Migrating | 10 | This activation is migrating to a new location. |