aboutsummaryrefslogtreecommitdiffstats
path: root/messagebus/src/main/java/com/yahoo/messagebus/metrics/ValueMetric.java
blob: 8905a3eadd30fc29061ba624a3e17d156ca66faa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.messagebus.metrics;

import java.io.Writer;

/**
 * @author thomasg
 */
public class ValueMetric<V extends Number> extends NumberMetric<V> {

    public ValueMetric(String name, V v, MetricSet owner) {
        super(name, v, owner);
    }
}