Project

General

Profile

1
package eu.dnetlib.data.mapreduce.hbase;
2

    
3
import java.io.Serializable;
4

    
5
/**
6
 * Created by Alessia Bardi on 2019-04-08.
7
 *
8
 * @author Alessia Bardi
9
 */
10
public interface Reporter extends Serializable {
11

    
12
	void incrementCounter(String counterGroup, String counterName, long delta);
13

    
14
}
(1-1/2)