Struct AvgMinMax<T>
- Namespace
- Sportradar.LiveData.Sdk.Services.QueueStats
- Assembly
- Sportradar.LiveData.Sdk.dll
Avg-Min-Max statistics tuple.
public struct AvgMinMax<T> : ICloneable where T : struct
Type Parameters
TStructure type
- Implements
- Inherited Members
Properties
Avg
Average value
public T? Avg { readonly get; set; }
Property Value
- T?
Max
Maximum value
public T? Max { readonly get; set; }
Property Value
- T?
Min
Minimum value
public T? Min { readonly get; set; }
Property Value
- T?
Methods
Clone()
Creates a new object that is a copy of the current instance.
public AvgMinMax<T> Clone()
Returns
- AvgMinMax<T>
A new object that is a copy of this instance.
Reset()
Reset statistics
public void Reset()
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.
Remarks
Can be used for diagnostics purposes.