Enum EnforceAction
An enumeration that defines how strict modification of state should be enforced.
Namespace: Cortex.Net
Assembly: Cortex.Net.dll
Syntax
public enum EnforceAction : int
Fields
Name | Description |
---|---|
Always | State always needs be updated (which in practice also includes creation) in actions. |
Never | State can be modified from anywhere |
Observed | All state that is observed somewhere needs to be changed through actions. This is the recommended strictness mode in non-trivial applications. |