Skip to content

Commit

Permalink
Clarify the messagesSent metric.
Browse files Browse the repository at this point in the history
  • Loading branch information
veithen committed May 15, 2010
1 parent c5887d5 commit 6a7357d
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@ public long getBytesReceived() {
return bytesReceived;
}

/**
* Get the number of messages sent. This metrics is incremented after a
* message has been completely and successfully put on the wire.
*
* @return the number of messages sent
*/
public long getMessagesSent() {
return messagesSent;
}
Expand Down

0 comments on commit 6a7357d

Please sign in to comment.