1 instantiation of CircularBuffer
aspire (1)
Utils\OutputCollector.cs (1)
8
private readonly CircularBuffer<(string Stream, string Line)> _lines =
new
(10000); // 10k lines.
6 references to CircularBuffer
aspire (6)
src\Shared\CircularBuffer.cs (5)
15
[DebuggerTypeProxy(typeof(
CircularBuffer
<>.CircularBufferDebugView))]
289
public
CircularBuffer
<T> Clone()
291
var
buffer = new CircularBuffer<T>(_buffer.ToList(), Capacity, _start, _end);
297
private sealed class CircularBufferDebugView(
CircularBuffer
<T> collection)
299
private readonly
CircularBuffer
<T> _collection = collection;
Utils\OutputCollector.cs (1)
8
private readonly
CircularBuffer
<(string Stream, string Line)> _lines = new(10000); // 10k lines.