C# Class Elders.Hystrix.NET.Util.HystrixRollingPercentile.PercentileBucketData

Stores the values of a bucket in HystrixRollingPercentile. It's behavior is similar to a circular array, the new items after the specified count will overwrite the oldest items.
Mostrar archivo Open project: Elders/Hystrix.NET

Public Methods

Method Description
AddValue ( ) : void

Adds values to this bucket.

PercentileBucketData ( int dataLength ) : System

Initializes a new instance of the PercentileBucketData class.

Method Details

AddValue() public method

Adds values to this bucket.
public AddValue ( ) : void
return void

PercentileBucketData() public method

Initializes a new instance of the PercentileBucketData class.
public PercentileBucketData ( int dataLength ) : System
dataLength int The maximum number of values to store.
return System