ComputedColumnState
Namespace: Meshmakers.Octo.Runtime.Contracts.StreamData
Engine-managed lifecycle state of a computed column on an archive. Mirrors the
CkComputedColumnState CK enum (System.StreamData ≥ 1.5.0); key values match so the
snapshot maps by a direct cast.
public enum ComputedColumnState
Inheritance Object → ValueType → Enum → ComputedColumnState
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Fields
| Name | Value | Description |
|---|---|---|
| Pending | 0 | A backfill is scheduled but not started; consumers still see the previous state. |
| Backfilling | 1 | The backfill is running; consumers still see the previous state until it commits. |
| Active | 2 | The computed column is live — new rows include the value and readers see it. |
| Failed | 3 | The backfill failed; the previous state is intact, no partial data is visible. |