Skip to content

Commit 863cd48

Browse files
committed
sealed
1 parent 8fcf442 commit 863cd48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SignalR/server/Core/src/Internal/ChannelBasedSemaphore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Microsoft.AspNetCore.SignalR.Internal;
77

88
// Use a Channel instead of a SemaphoreSlim so that we can potentially save task allocations (ValueTask!)
99
// Additionally initial perf results show faster RPS when using Channel instead of SemaphoreSlim
10-
internal class ChannelBasedSemaphore
10+
internal sealed class ChannelBasedSemaphore
1111
{
1212
internal readonly Channel<int> _channel;
1313

0 commit comments

Comments
 (0)