Defines when during engine execution the process will be run.
- Namespace
- Statiq
.Web - Interfaces
-
- IComparable
- IFormattable
- IConvertible
- Base Types
-
- object
- ValueType
- Enum
graph BT
Type-->Base0["Enum"]
Base0-->Base1["ValueType"]
Base1-->Base2["object"]
Type-.->Interface0["IComparable"]
Type-.->Interface1["IFormattable"]
Type-.->Interface2["IConvertible"]
Type["ProcessTiming"]
class Type type-node
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
|