< Summary

Information
Class: Elsa.Workflows.IActivityExecutionPipelineContributor
Assembly: Elsa.Workflows.Core
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Contracts/IActivityExecutionPipelineContributor.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 19
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_Order()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Contracts/IActivityExecutionPipelineContributor.cs

#LineLine coverage
 1using Elsa.Workflows.Pipelines.ActivityExecution;
 2
 3namespace Elsa.Workflows;
 4
 5/// <summary>
 6/// Contributes middleware to the activity execution pipeline.
 7/// </summary>
 8public interface IActivityExecutionPipelineContributor
 9{
 10    /// <summary>
 11    /// Gets the order in which the contributor is applied.
 12    /// </summary>
 013    int Order => 0;
 14
 15    /// <summary>
 16    /// Configures the activity execution pipeline.
 17    /// </summary>
 18    void Configure(IActivityExecutionPipelineBuilder builder);
 19}

Methods/Properties

get_Order()