4 writes to _streamWindow
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http2\Http2OutputProducer.cs (4)
77_streamWindow = context.ClientPeerSettings.InitialWindowSize; 179_streamWindow -= bytes; 196_streamWindow = initialWindowSize; 734_streamWindow += bytes;
6 references to _streamWindow
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\Http2\Http2OutputProducer.cs (6)
99internal (int, long, State, State, long) SchedulingState => (Stream.StreamId, _unconsumedBytes, _unobservedState, _currentState, _streamWindow); 171return Math.Min(bytes, _streamWindow); 319if (_streamWindow > 0) 711var maxUpdate = Http2PeerSettings.MaxWindowSize - _streamWindow; 733var wasDepleted = _streamWindow <= 0; 735return wasDepleted && _streamWindow > 0 && _unconsumedBytes > 0;