< Summary

Information
Class: Elsa.Alterations.Endpoints.Workflows.Retry.Request
Assembly: Elsa.Alterations
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Alterations/Endpoints/Workflows/Retry/Request.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 17
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_WorkflowInstanceIds()100%210%
get_ActivityIds()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Alterations/Endpoints/Workflows/Retry/Request.cs

#LineLine coverage
 1namespace Elsa.Alterations.Endpoints.Workflows.Retry;
 2
 3/// <summary>
 4/// A request to retry one or more faulted workflow instances.
 5/// </summary>
 6public class Request
 7{
 8    /// <summary>
 9    /// The IDs of the workflow instances that have incidents to be retried.
 10    /// </summary>
 011    public ICollection<string> WorkflowInstanceIds { get; set; } = new List<string>();
 12
 13    /// <summary>
 14    /// An optional list of explicitly specified activity IDs to retry. If omitted, all faulted activities will be retri
 15    /// </summary>
 016    public ICollection<string>? ActivityIds { get; set; }
 17}