Package io.netty.handler.codec.http2
Class Http2FrameCodec.Http2RemoteFlowControllerListener
- java.lang.Object
-
- io.netty.handler.codec.http2.Http2FrameCodec.Http2RemoteFlowControllerListener
-
- All Implemented Interfaces:
Http2RemoteFlowController.Listener
- Enclosing class:
- Http2FrameCodec
private final class Http2FrameCodec.Http2RemoteFlowControllerListener extends java.lang.Object implements Http2RemoteFlowController.Listener
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Http2RemoteFlowControllerListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
writabilityChanged(Http2Stream stream)
Notification thatHttp2RemoteFlowController.isWritable(Http2Stream)
has changed forstream
.
-
-
-
Method Detail
-
writabilityChanged
public void writabilityChanged(Http2Stream stream)
Description copied from interface:Http2RemoteFlowController.Listener
Notification thatHttp2RemoteFlowController.isWritable(Http2Stream)
has changed forstream
.This method should not throw. Any thrown exceptions are considered a programming error and are ignored.
- Specified by:
writabilityChanged
in interfaceHttp2RemoteFlowController.Listener
- Parameters:
stream
- The stream which writability has changed for.
-
-