Enum MeasurableState
- Namespace
- LfrlAnvil.Diagnostics
- Assembly
- LfrlAnvil.Core.dll
Represents the state of a Measurable instance.
public enum MeasurableState : byte
- Extension Methods
Fields
Done = 4Specifies that a measurable instance invocation has finished.
Preparing = 1Specifies that a measurable has been invoked and is in its preparation stage.
Ready = 0Specifies that a measurable has not yet been invoked.
Running = 2Specifies that a measurable has been invoked and is in its main state.
TearingDown = 3Specifies that a measurable has been invoked and is in its teardown stage.