A base pipeline that runs code for each execution phase.
- Namespace
- Statiq
.Core - Interfaces
- Base Types
-
- object
- Module
Syntax
public abstract class ExecutionPipeline : Module, IModule, IPipeline, IReadOnlyPipeline
Constructors
Name | Summary |
---|---|
ExecutionPipeline |
Properties
Name | Property Type | Summary |
---|---|---|
Dependencies | HashSet |
|
DependencyOf | HashSet |
|
Deployment | bool | |
ExecutionPolicy | ExecutionPolicy | |
Isolated | bool | |
Post |
bool |
Methods
Name | Return Value | Summary |
---|---|---|
AfterExecution |
void |
Called after each module execution.
Inherited from Module
|
AfterExecutionAsync |
Task |
Called after each module execution.
Inherited from Module
|
BeforeExecution |
void |
Called before each module execution.
Inherited from Module
|
BeforeExecutionAsync |
Task |
Called before each module execution.
Inherited from Module
|
ExecuteAsync |
Task |
This should not be called directly, instead call
IExecutionContext.Execute() if you need to execute a module from within another module.
Inherited from Module
|
ExecuteContextAsync |
Task |
|
ExecuteInputAsync |
Task |
Executes the module.
|
Execute |
Task |
|
Execute |
Task |
|
Execute |
Task |
|
Execute |
Task |
|
Finally |
void |
Called after each module execution, even if an exception is thrown during execution.
Inherited from Module
|
FinallyAsync |
Task |
Called after each module execution, even if an exception is thrown during execution.
Inherited from Module
|