3 instantiations of CircularBuffer
Aspire.Hosting (3)
ApplicationModel\ResourceLoggerService.cs (1)
383private readonly CircularBuffer<LogEntry> _inMemoryEntries = new(MaxLogCount);
src\Shared\CircularBuffer.cs (1)
316var buffer = new CircularBuffer<T>(_buffer.ToList(), Capacity, _start, _end);
src\Shared\ConsoleLogs\LogEntries.cs (1)
19private readonly CircularBuffer<LogEntry> _logEntries = new(maximumEntryCount);
7 references to CircularBuffer
Aspire.Hosting (7)
ApplicationModel\ResourceLoggerService.cs (1)
383private readonly CircularBuffer<LogEntry> _inMemoryEntries = new(MaxLogCount);
src\Shared\CircularBuffer.cs (5)
15[DebuggerTypeProxy(typeof(CircularBuffer<>.CircularBufferDebugView))] 314public CircularBuffer<T> Clone() 316var buffer = new CircularBuffer<T>(_buffer.ToList(), Capacity, _start, _end); 322private sealed class CircularBufferDebugView(CircularBuffer<T> collection) 324private readonly CircularBuffer<T> _collection = collection;
src\Shared\ConsoleLogs\LogEntries.cs (1)
19private readonly CircularBuffer<LogEntry> _logEntries = new(maximumEntryCount);