aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/gnunet/statistics/StatisticsWatcher.java
blob: d3fb6459413ebe86a2421464f726db83106d0818 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.gnunet.statistics;

/**
 * Created with IntelliJ IDEA.
 * User: dold
 * Date: 8/24/13
 * Time: 5:56 PM
 * To change this template use File | Settings | File Templates.
 */
public interface StatisticsWatcher {
    public void onReceive(String subsystem, String name, long value);
    public void onTimeout();
}