Package io.netty.handler.codec.http2
Interface Http2RemoteFlowController.Listener
- All Known Implementing Classes:
Http2FrameCodec.Http2RemoteFlowControllerListener
- Enclosing interface:
Http2RemoteFlowController
public static interface Http2RemoteFlowController.Listener
Listener to the number of flow-controlled bytes written per stream.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
writabilityChanged
(Http2Stream stream) Notification thatHttp2RemoteFlowController.isWritable(Http2Stream)
has changed forstream
.
-
Method Details
-
writabilityChanged
Notification thatHttp2RemoteFlowController.isWritable(Http2Stream)
has changed forstream
.This method should not throw. Any thrown exceptions are considered a programming error and are ignored.
- Parameters:
stream
- The stream which writability has changed for.
-