3 writes to _next
Microsoft.AspNetCore.SignalR.Core (3)
src\SignalR\common\Shared\MessageBuffer.cs (3)
345
_next
= pool.Pop();
349
_next
= new LinkedBuffer();
420
_next
= null;
8 references to _next
Microsoft.AspNetCore.SignalR.Core (8)
src\SignalR\common\Shared\MessageBuffer.cs (8)
341
else if (
_next
is null)
351
_next
.AddMessage(hubMessage, sequenceId, pool);
357
var linkedBuffer =
_next
;
358
while (linkedBuffer.
_next
is not null)
360
linkedBuffer = linkedBuffer.
_next
;
390
if (linkedBuffer.
_next
is null)
398
linkedBuffer = linkedBuffer.
_next
;
497
_linkedBuffer = _linkedBuffer.
_next
;