Method | Description | |
---|---|---|
AddBucket ( Bucket lastBucket ) : void |
Updates the cumulative values by the values of a Bucket.
|
|
CumulativeSum ( ) : System |
Initializes a new instance of the CumulativeSum class.
|
|
Get ( HystrixRollingNumberEvent type ) : long |
Gets the cumulative value for the specified HystrixRollingNumberEvent. (Returns LongAdder.Sum() for Counter types and LongMaxUpdater.Max() for MaxUpdater types.)
|
|
GetAdder ( HystrixRollingNumberEvent type ) : |
Gets the LongAdder instance for the specified event.
|
|
GetMaxUpdater ( HystrixRollingNumberEvent type ) : |
Gets the LongMaxUpdater instance for the specified event.
|
public AddBucket ( Bucket lastBucket ) : void | ||
lastBucket | Bucket | The bucket to update with. |
return | void |
public Get ( HystrixRollingNumberEvent type ) : long | ||
type | HystrixRollingNumberEvent | The specified event. |
return | long |
public GetAdder ( HystrixRollingNumberEvent type ) : |
||
type | HystrixRollingNumberEvent | The specified event. |
return |
public GetMaxUpdater ( HystrixRollingNumberEvent type ) : |
||
type | HystrixRollingNumberEvent | The specified event. |
return |