Skip to content

Commit

Permalink
Add note about avoiding blocking in custom implementation of MeterReg…
Browse files Browse the repository at this point in the history
…istry (issue #134)
  • Loading branch information
jkschneider committed Oct 5, 2017
1 parent fa02fd4 commit e81f194
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
* over the set of meters instrumenting your application, and then further iterate over each meter's metrics, generally
* resulting in a time series in the metrics backend for each combination of metrics and dimensions.
*
* MeterRegistry may be used in a reactive context. As such, implementations must not negatively impact the calling
* thread, e.g. it should respond immediately by avoiding IO call, deep stack recursion or any coordination.
*
* @author Jon Schneider
*/
public interface MeterRegistry {
Expand Down

0 comments on commit e81f194

Please sign in to comment.