You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2014/03/20 22:22:52 UTC

[29/50] [abbrv] git commit: SlidingWindowCounter: update Java docs

SlidingWindowCounter: update Java docs


Project: http://git-wip-us.apache.org/repos/asf/incubator-storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-storm/commit/8b401208
Tree: http://git-wip-us.apache.org/repos/asf/incubator-storm/tree/8b401208
Diff: http://git-wip-us.apache.org/repos/asf/incubator-storm/diff/8b401208

Branch: refs/heads/master
Commit: 8b4012082975fd7b31505ebafbcb9404c55369ae
Parents: d5ec8f4
Author: Michael G. Noll <mn...@verisign.com>
Authored: Thu Aug 29 12:57:10 2013 +0200
Committer: Michael G. Noll <mn...@verisign.com>
Committed: Thu Aug 29 12:57:10 2013 +0200

----------------------------------------------------------------------
 src/jvm/storm/starter/tools/SlidingWindowCounter.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/8b401208/src/jvm/storm/starter/tools/SlidingWindowCounter.java
----------------------------------------------------------------------
diff --git a/src/jvm/storm/starter/tools/SlidingWindowCounter.java b/src/jvm/storm/starter/tools/SlidingWindowCounter.java
index dff6a59..38becdc 100644
--- a/src/jvm/storm/starter/tools/SlidingWindowCounter.java
+++ b/src/jvm/storm/starter/tools/SlidingWindowCounter.java
@@ -80,7 +80,7 @@ public final class SlidingWindowCounter<T> implements Serializable {
    * successfully processed "upstream" (i.e. by the caller). Knowing this we will start counting any subsequent
    * objects within the next "chunk" of the sliding window.
    *
-   * @return
+   * @return The current (total) counts of all tracked objects.
    */
   public Map<T, Long> getCountsThenAdvanceWindow() {
     Map<T, Long> counts = objCounter.getCounts();