3 instantiations of CircularBuffer
Aspire.Hosting (3)
ApplicationModel\ResourceLoggerService.cs (1)
348
private readonly CircularBuffer<LogEntry> _inMemoryEntries =
new
(MaxLogCount);
src\Shared\CircularBuffer.cs (1)
291
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)
348
private readonly
CircularBuffer
<LogEntry> _inMemoryEntries = new(MaxLogCount);
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;
src\Shared\ConsoleLogs\LogEntries.cs (1)
19
private readonly
CircularBuffer
<LogEntry> _logEntries = new(maximumEntryCount);