6 references to CircularBuffer
Aspire.Hosting (6)
src\Shared\CircularBuffer.cs (5)
15[DebuggerTypeProxy(typeof(CircularBuffer<>.CircularBufferDebugView))] 289public CircularBuffer<T> Clone() 291var buffer = new CircularBuffer<T>(_buffer.ToList(), Capacity, _start, _end); 297private sealed class CircularBufferDebugView(CircularBuffer<T> collection) 299private readonly CircularBuffer<T> _collection = collection;
src\Shared\ConsoleLogs\LogEntries.cs (1)
19private readonly CircularBuffer<LogEntry> _logEntries = new(maximumEntryCount);