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)
39public bool IsAvailabilityLow => _flow.Available < _minWindowSizeIncrement; 54if (bytes > _flow.Available) 59if (_flow.IsAborted) 65_flow.Advance(bytes); 76if (_flow.IsAborted) 82if (!_flow.TryUpdateWindow(bytes)) 121if (_flow.IsAborted) 126_flow.Abort(); 130return _initialWindowSize - _flow.Available;