summaryrefslogtreecommitdiffstats
path: root/metrics/src/main/java/com/yahoo/metrics/EventLogger.java
blob: 3798b0e2e5540670c841644fd4828d3cdcd182d8 (plain) (blame)
1
2
3
4
5
6
7
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.metrics;

public interface EventLogger {
    public void value(String name, double value);
    public void count(String name, long value);
}