Package org.eclipse.jetty.http2
Interface FlowControlStrategy
- All Known Implementing Classes:
AbstractFlowControlStrategy
,BufferingFlowControlStrategy
,SimpleFlowControlStrategy
public interface FlowControlStrategy
-
Nested Class Summary
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onDataConsumed
(ISession session, IStream stream, int length) void
onDataReceived
(ISession session, IStream stream, int length) void
onDataSending
(IStream stream, int length) void
onDataSent
(IStream stream, int length) void
onStreamCreated
(IStream stream) void
onStreamDestroyed
(IStream stream) void
onWindowUpdate
(ISession session, IStream stream, WindowUpdateFrame frame) void
updateInitialStreamWindow
(ISession session, int initialStreamWindow, boolean local) void
windowUpdate
(ISession session, IStream stream, WindowUpdateFrame frame)
-
Field Details
-
DEFAULT_WINDOW_SIZE
static final int DEFAULT_WINDOW_SIZE- See Also:
-
-
Method Details
-
onStreamCreated
-
onStreamDestroyed
-
updateInitialStreamWindow
-
onWindowUpdate
-
onDataReceived
-
onDataConsumed
-
windowUpdate
-
onDataSending
-
onDataSent
-