A base pipeline that runs code for each execution phase.
- Namespace
- Statiq
.Core - Interfaces
- Base Types
-
- object
- Module
graph BT
Type-->Base0["Module"]
click Base0 "/api/Statiq.Common/Module"
Base0-->Base1["object"]
Type-.->Interface0["IModule"]
click Interface0 "/api/Statiq.Common/IModule"
Type-.->Interface1["IPipeline"]
click Interface1 "/api/Statiq.Common/IPipeline"
Type-.->Interface2["IReadOnlyPipeline"]
click Interface2 "/api/Statiq.Common/IReadOnlyPipeline"
Type["ExecutionPipeline"]
class Type type-node
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
|