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 0dd080d commit 1688798Copy full SHA for 1688798
prometheus-metrics-core/src/main/java/io/prometheus/metrics/core/metrics/StatefulMetric.java
@@ -28,7 +28,8 @@
28
* because in Java <i>synchronous</i> and <i>asynchronous</i> usually refers to multi-threading, but
29
* this has nothing to do with multi-threading.
30
*/
31
-public abstract class StatefulMetric<D extends DataPoint, T extends D> extends MetricWithFixedMetadata {
+public abstract class StatefulMetric<D extends DataPoint, T extends D>
32
+ extends MetricWithFixedMetadata {
33
34
/** Map label values to data points. */
35
private final ConcurrentHashMap<List<String>, T> data = new ConcurrentHashMap<>();
0 commit comments