We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fcf442 commit 863cd48Copy full SHA for 863cd48
src/SignalR/server/Core/src/Internal/ChannelBasedSemaphore.cs
@@ -7,7 +7,7 @@ namespace Microsoft.AspNetCore.SignalR.Internal;
7
8
// Use a Channel instead of a SemaphoreSlim so that we can potentially save task allocations (ValueTask!)
9
// Additionally initial perf results show faster RPS when using Channel instead of SemaphoreSlim
10
-internal class ChannelBasedSemaphore
+internal sealed class ChannelBasedSemaphore
11
{
12
internal readonly Channel<int> _channel;
13
0 commit comments