beginning of branch i2p.i2p.i2p

This commit is contained in:
cvs_import
2004-04-08 04:41:54 +00:00
committed by zzz
commit 77bd69c5e5
292 changed files with 41035 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
/**
* A class that wants to analyze tests implements this interface. This
* allows to "mix" several test values (from different echo servers)
* as well as different algorithms for analyzing the data (for
* jrandom: Strategy Pattern *g*).
*/
public interface EchoTestAnalyzer {
public void packetLossOccurred(boolean beforeDisconnect);
public void successOccurred(long delay);
public void disconnected(boolean refused);
}