summaryrefslogtreecommitdiffstats
path: root/metrics/src/test/java/com/yahoo/metrics/SummedDoubleValueMetric.java
blob: 5d616d93821e3f83e4f23629c03d9eb1a78d15ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.metrics;

/**
 * @author Simon Thoresen Hult
 */
class SummedDoubleValueMetric extends ValueMetric<Double> {

    public SummedDoubleValueMetric(String name, String tags, String description, MetricSet owner) {
        super(name, tags, description, owner);
    }

    public SummedDoubleValueMetric(SummedDoubleValueMetric other, CopyType copyType, MetricSet owner) {
        super(other, copyType, owner);
    }
}