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

/**
 * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen Hult</a>
 */
class SummedLongValueMetric extends ValueMetric<Long> {

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

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