2 writes to _flow
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http2\FlowControl\InputFlowControl.cs (2)
34
_flow
= new FlowControl(initialWindowSize);
43
_flow
= new FlowControl((uint)_initialWindowSize);
9 references to _flow
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\Http2\FlowControl\InputFlowControl.cs (9)
39
public bool IsAvailabilityLow =>
_flow
.Available < _minWindowSizeIncrement;
54
if (bytes >
_flow
.Available)
59
if (
_flow
.IsAborted)
65
_flow
.Advance(bytes);
76
if (
_flow
.IsAborted)
82
if (!
_flow
.TryUpdateWindow(bytes))
121
if (
_flow
.IsAborted)
126
_flow
.Abort();
130
return _initialWindowSize -
_flow
.Available;