Author: toad
Date: 2008-03-20 17:03:45 +0000 (Thu, 20 Mar 2008)
New Revision: 18647
Modified:
trunk/freenet/src/freenet/io/comm/ByteCounter.java
Log:
Clarify javadocs
Modified: trunk/freenet/src/freenet/io/comm/ByteCounter.java
===================================================================
--- trunk/freenet/src/freenet/io/comm/ByteCounter.java 2008-03-20 16:58:12 UTC
(rev 18646)
+++ trunk/freenet/src/freenet/io/comm/ByteCounter.java 2008-03-20 17:03:45 UTC
(rev 18647)
@@ -8,11 +8,12 @@
*/
public interface ByteCounter {
+ /** Sent some bytes. *Includes* any bytes flagged as
already-reported-to-throttle. */
public void sentBytes(int x);
public void receivedBytes(int x);
- /** Sent payload - only include the number of bytes of actual payload
i.e. data from the user's point of view, as opposed to overhead */
+ /** Sent payload - only include the number of bytes of actual payload
i.e. data from the user's point of view, as opposed to overhead. */
public void sentPayload(int x);
}