1 package ca.uhn.hl7v2.testpanel.util;
2
3 public interface ISendProgressCallback extends IProgressCallback {
4
5 void updateAvgThroughputPerSecond(int theThroughput);
6
7 void updateAvgResponseTimeMillis(int theMillis);
8
9 }