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