< Summary

Information
Class: Elsa.Workflows.Runtime.IngressSources.InternalBookmarkQueueIngressSource
Assembly: Elsa.Workflows.Runtime
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/IngressSources/InternalBookmarkQueueIngressSource.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 14
Line coverage: 100%
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
.ctor(...)100%11100%
get_Name()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/IngressSources/InternalBookmarkQueueIngressSource.cs

#LineLine coverage
 1namespace Elsa.Workflows.Runtime.IngressSources;
 2
 3/// <summary>
 4/// Surfaces the in-process bookmark-queue processor as an <see cref="IIngressSource"/> in the runtime's diagnostic
 5/// registry. Pause/resume are observed automatically via <see cref="IQuiescenceSignal"/> — the
 6/// <c>BookmarkQueueProcessor</c> consults the signal at the top of each invocation and skips dispatch when the
 7/// runtime is paused or draining (FR-024). This adapter therefore has no behavior of its own beyond reporting
 8/// state, which is what <see cref="PassiveIngressSource"/> is for.
 9/// </summary>
 1210public sealed class InternalBookmarkQueueIngressSource(IQuiescenceSignal signal) : PassiveIngressSource(signal)
 11{
 12    /// <inheritdoc />
 4413    public override string Name => "internal.bookmark-queue-worker";
 14}