Coverage Report - org.galagosearch.tupleflow.Counter
 
Classes in this File Line Coverage Branch Coverage Complexity
Counter
N/A
N/A
1
 
 1  
 // BSD License (http://www.galagosearch.org/license)
 2  
 
 3  
 package org.galagosearch.tupleflow;
 4  
 
 5  
 /**
 6  
  * A counter sends statistics from individual TupleFlow workers back to
 7  
  * the JobExecutor.
 8  
  * 
 9  
  * @author trevor
 10  
  */
 11  
 public interface Counter {
 12  
     void increment();
 13  
     void incrementBy(int value);
 14  
 }