< Summary - Kestrun — Combined Coverage

Information
Class: Kestrun.Callback.InMemoryCallbackQueue
Assembly: Kestrun
File(s): /home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun/Callback/InMemoryCallbackQueue.cs
Tag: Kestrun/Kestrun@ca54e35c77799b76774b3805b6f075cdbc0c5fbe
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 19
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

Coverage history

Coverage history 0 25 50 75 100 01/02/2026 - 00:16:25 Line coverage: 100% (6/6) Total lines: 19 Tag: Kestrun/Kestrun@8405dc23b786b9d436fba0d65fb80baa4171e1d0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_Channel()100%11100%
.ctor()100%11100%

File(s)

/home/runner/work/Kestrun/Kestrun/src/CSharp/Kestrun/Callback/InMemoryCallbackQueue.cs

#LineLine coverage
 1using System.Threading.Channels;
 2
 3namespace Kestrun.Callback;
 4
 5/// <summary>
 6/// In-memory queue for callback requests.
 7/// </summary>
 8public sealed class InMemoryCallbackQueue
 9{
 10    /// <summary>
 11    /// The channel for callback requests.
 12    /// </summary>
 1213    public Channel<CallbackRequest> Channel { get; } =
 514        System.Threading.Channels.Channel.CreateBounded<CallbackRequest>(
 515            new BoundedChannelOptions(10_000)
 516            {
 517                FullMode = BoundedChannelFullMode.Wait
 518            });
 19}

Methods/Properties

get_Channel()
.ctor()