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