summaryrefslogtreecommitdiffstats
path: root/statistics/src/main/java/com/yahoo/statistics/Group.java
blob: 67804013648f4df3dad7faad71c4109b43512cde (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.statistics;


/**
 * The base class for groups of counters and values.
 *
 * @author  <a href="mailto:steinar@yahoo-inc.com">Steinar Knutsen</a>
 */
abstract class Group extends Handle {
    Group(String name, Statistics manager, Callback parametrizedCallback) {
        super(name, manager, parametrizedCallback);
    }
}