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.
ActiveConnectionGauge.currentCount
1 parent b462bdc commit 86d5466Copy full SHA for 86d5466
Sources/RediStack/RedisMetrics.swift
@@ -62,7 +62,7 @@ public class ActiveConnectionGauge {
62
private let count: NIOAtomic<Int> = .makeAtomic(value: 0)
63
64
/// The number of the connections that are currently reported as active.
65
- var currentCount: Int { return count.load() }
+ public var currentCount: Int { return count.load() }
66
67
internal init() { }
68
0 commit comments