Module io.netty.codec.http2
Package io.netty5.handler.codec.http2
Interface StreamByteDistributor.Writer
-
- Enclosing interface:
- StreamByteDistributor
public static interface StreamByteDistributor.Writer
Object that performs the writing of the bytes that have been allocated for a stream.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
write(Http2Stream stream, int numBytes)
Writes the allocated bytes for this stream.
-
-
-
Method Detail
-
write
void write(Http2Stream stream, int numBytes)
Writes the allocated bytes for this stream.Any
Throwable
thrown from this method is considered a programming error. AGOAWAY
frame will be sent and the will be connection closed.- Parameters:
stream
- the stream for which to perform the write.numBytes
- the number of bytes to write.
-
-