public static interface StreamByteDistributor.StreamState
StreamByteDistributor.updateStreamableBytes(StreamState)
method.Modifier and Type | Method and Description |
---|---|
boolean |
hasFrame()
Indicates whether or not there are frames pending for this stream.
|
int |
pendingBytes()
Get the amount of bytes this stream has pending to send.
|
Http2Stream |
stream()
Gets the stream this state is associated with.
|
int |
windowSize()
The size (in bytes) of the stream's flow control window.
|
Http2Stream stream()
int pendingBytes()
windowSize()
!Http2CodecUtil#streamableBytes(StreamState)
boolean hasFrame()
int windowSize()
A StreamByteDistributor
needs to know the stream's window size in order to avoid allocating bytes
if the window size is negative. The window size being 0
may also be significant to determine when if
an stream has been given a chance to write an empty frame, and also enables optimizations like not writing
empty frames in some situations (don't write headers until data can also be written).
Http2CodecUtil#streamableBytes(StreamState)
Copyright © 2008–2017 The Netty Project. All rights reserved.