C# Класс 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.
Показать файл Открыть проект

Открытые методы

Метод Описание
AddValue ( ) : void

Adds values to this bucket.

PercentileBucketData ( int dataLength ) : System

Initializes a new instance of the PercentileBucketData class.

Описание методов

AddValue() публичный Метод

Adds values to this bucket.
public AddValue ( ) : void
Результат void

PercentileBucketData() публичный Метод

Initializes a new instance of the PercentileBucketData class.
public PercentileBucketData ( int dataLength ) : System
dataLength int The maximum number of values to store.
Результат System