Table of Contents

Enum IndexInstanceBuildLifecycleState

Namespace
Dynamicweb.Indexing.BuildStates
Assembly
Dynamicweb.Core.dll

Represents the durable lifecycle state of a single index instance build.

public enum IndexInstanceBuildLifecycleState

Fields

Completed = 3

The latest build completed successfully and passed promotion/validation checks.

Failed = 4

The latest build failed explicitly.

Interrupted = 5

The latest build was interrupted unexpectedly and requires recovery.

NeverBuilt = 0

The instance has never completed a successful build and no attempt is currently recorded.

Running = 2

The instance is actively being built.

Starting = 1

The build operation has been created but has not yet started doing useful work.

To top