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
(Session session, Stream stream, int length) void
onDataReceived
(Session session, Stream stream, int length) void
onDataSending
(Stream stream, int length) void
onDataSent
(Stream stream, int length) void
onStreamCreated
(Stream stream) void
onStreamDestroyed
(Stream stream) void
onWindowUpdate
(Session session, Stream stream, WindowUpdateFrame frame) void
updateInitialStreamWindow
(Session session, int initialStreamWindow, boolean local) void
windowUpdate
(Session session, Stream 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
-