4 writes to _streamWindow
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http2\Http2OutputProducer.cs (4)
70_streamWindow = context.ClientPeerSettings.InitialWindowSize; 172_streamWindow -= bytes; 189_streamWindow = initialWindowSize; 713_streamWindow += bytes;
6 references to _streamWindow
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\Http2\Http2OutputProducer.cs (6)
92internal (int, long, State, State, long) SchedulingState => (Stream.StreamId, _unconsumedBytes, _unobservedState, _currentState, _streamWindow); 164return Math.Min(bytes, _streamWindow); 312if (_streamWindow > 0) 690var maxUpdate = Http2PeerSettings.MaxWindowSize - _streamWindow; 712var wasDepleted = _streamWindow <= 0; 714return wasDepleted && _streamWindow > 0 && _unconsumedBytes > 0;