C# Class DotNetWorkQueue.Metrics.Net.Histogram

A Histogram measures the distribution of values in a stream of data: e.g., the number of results returned by a search.
Inheritance: IHistogram
Exibir arquivo Open project: blehnen/DotNetWorkQueue

Public Methods

Method Description
Histogram ( global histogram )

Initializes a new instance of the Histogram class.

Update ( long value, string userValue = null ) : void

Records a value.

Method Details

Histogram() public method

Initializes a new instance of the Histogram class.
public Histogram ( global histogram )
histogram global The histogram.

Update() public method

Records a value.
public Update ( long value, string userValue = null ) : void
value long Value to be added to the histogram.
userValue string A custom user value that will be associated to the results. /// Useful for tracking (for example) for which id the max or min value was recorded.
return void