1 write to Capacity
Aspire.Dashboard (1)
src\Shared\CircularBuffer.cs (1)
37
Capacity
= capacity;
6 references to Capacity
Aspire.Dashboard (6)
Otlp\Model\MetricValues\DimensionScope.cs (1)
22
public int Capacity => _values.
Capacity
;
src\Shared\CircularBuffer.cs (5)
44
public bool IsFull => Count ==
Capacity
;
271
if (++index <
Capacity
)
283
index =
Capacity
- 1;
291
var buffer = new CircularBuffer<T>(_buffer.ToList(),
Capacity
, _start, _end);
304
public int Capacity => _collection.
Capacity
;