Defines when during engine execution the process will be run.
- Namespace
- Statiq
.Web - Interfaces
-
- IComparable
- IFormattable
- IConvertible
- Base Types
-
- object
- ValueType
- Enum
Syntax
public enum ProcessTiming
Fields
Name | Field Type | Constant Value | Summary |
---|---|---|---|
AfterExecution | ProcessTiming | 2 |
The process should be started after all pipelines have executed.
static
|
BeforeDeployment | ProcessTiming | 3 |
The process should be started after normal pipelines are executed and before deployment pipelines are executed.
If no deployment pipelines are executed, this is effectively the same as
AfterExecution .
static
|
BeforeExecution | ProcessTiming | 1 |
The process should be started before each pipeline execution.
static
|
Initialization | ProcessTiming | 0 |
The process should be started only once before other processes on the first engine execution.
static
|