summaryrefslogtreecommitdiffstats
path: root/metrics/src/main/java/com/yahoo/metrics/util/ValueType.java
blob: b777e21340627ba2f5371e942b0b876479233d62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.metrics.util;

import com.yahoo.metrics.JoinBehavior;

import java.util.Collection;

public interface ValueType extends Cloneable {
    public void add(ValueType other);
    public ValueType join(Collection<ValueType> sources, JoinBehavior joinBehavior);
}