Uses of Interface
org.eclipse.jetty.http2.IStream
-
Packages that use IStream Package Description org.eclipse.jetty.http2 org.eclipse.jetty.http2.server -
-
Uses of IStream in org.eclipse.jetty.http2
Classes in org.eclipse.jetty.http2 that implement IStream Modifier and Type Class Description class
HTTP2Stream
Fields in org.eclipse.jetty.http2 declared as IStream Modifier and Type Field Description protected IStream
HTTP2Flusher.Entry. stream
Methods in org.eclipse.jetty.http2 that return IStream Modifier and Type Method Description protected IStream
HTTP2Session. createLocalStream(int streamId, Promise<Stream> promise)
protected IStream
HTTP2Session. createRemoteStream(int streamId)
IStream
HTTP2Session. getStream(int streamId)
IStream
ISession. getStream(int streamId)
protected IStream
HTTP2Session. newStream(int streamId, boolean local)
Methods in org.eclipse.jetty.http2 with parameters of type IStream Modifier and Type Method Description void
HTTP2Session. data(IStream stream, Callback callback, DataFrame frame)
void
ISession. data(IStream stream, Callback callback, DataFrame frame)
Enqueues the given DATA frame to be written to the connection.void
HTTP2Session. frames(IStream stream, java.util.List<? extends Frame> frames, Callback callback)
void
ISession. frames(IStream stream, java.util.List<? extends Frame> frames, Callback callback)
Enqueues the given frames to be written to the connection.protected void
HTTP2Session. notifyHeaders(IStream stream, HeadersFrame frame)
void
BufferingFlowControlStrategy. onDataConsumed(ISession session, IStream stream, int length)
void
FlowControlStrategy. onDataConsumed(ISession session, IStream stream, int length)
void
SimpleFlowControlStrategy. onDataConsumed(ISession session, IStream stream, int length)
void
AbstractFlowControlStrategy. onDataReceived(ISession session, IStream stream, int length)
void
FlowControlStrategy. onDataReceived(ISession session, IStream stream, int length)
void
AbstractFlowControlStrategy. onDataSending(IStream stream, int length)
void
FlowControlStrategy. onDataSending(IStream stream, int length)
void
AbstractFlowControlStrategy. onDataSent(IStream stream, int length)
void
FlowControlStrategy. onDataSent(IStream stream, int length)
void
AbstractFlowControlStrategy. onStreamCreated(IStream stream)
void
BufferingFlowControlStrategy. onStreamCreated(IStream stream)
void
FlowControlStrategy. onStreamCreated(IStream stream)
void
AbstractFlowControlStrategy. onStreamDestroyed(IStream stream)
void
BufferingFlowControlStrategy. onStreamDestroyed(IStream stream)
void
FlowControlStrategy. onStreamDestroyed(IStream stream)
protected void
HTTP2Session. onStreamOpened(IStream stream)
protected void
AbstractFlowControlStrategy. onStreamStalled(IStream stream)
protected void
AbstractFlowControlStrategy. onStreamUnstalled(IStream stream)
void
AbstractFlowControlStrategy. onWindowUpdate(ISession session, IStream stream, WindowUpdateFrame frame)
void
FlowControlStrategy. onWindowUpdate(ISession session, IStream stream, WindowUpdateFrame frame)
void
HTTP2Session. onWindowUpdate(IStream stream, WindowUpdateFrame frame)
void
ISession. onWindowUpdate(IStream stream, WindowUpdateFrame frame)
Callback method invoked when a WINDOW_UPDATE frame has been received.void
HTTP2Session. push(IStream stream, Promise<Stream> promise, PushPromiseFrame frame, Stream.Listener listener)
void
ISession. push(IStream stream, Promise<Stream> promise, PushPromiseFrame frame, Stream.Listener listener)
Enqueues the given PUSH_PROMISE frame to be written to the connection.boolean
HTTP2Session. removeStream(IStream stream)
boolean
ISession. removeStream(IStream stream)
Removes the givenstream
.protected void
BufferingFlowControlStrategy. sendWindowUpdate(IStream stream, ISession session, WindowUpdateFrame frame)
void
HTTP2Flusher. window(IStream stream, WindowUpdateFrame frame)
void
AbstractFlowControlStrategy. windowUpdate(ISession session, IStream stream, WindowUpdateFrame frame)
void
BufferingFlowControlStrategy. windowUpdate(ISession session, IStream stream, WindowUpdateFrame frame)
void
FlowControlStrategy. windowUpdate(ISession session, IStream stream, WindowUpdateFrame frame)
Constructors in org.eclipse.jetty.http2 with parameters of type IStream Constructor Description Entry(Frame frame, IStream stream, Callback callback)
-
Uses of IStream in org.eclipse.jetty.http2.server
Methods in org.eclipse.jetty.http2.server that return IStream Modifier and Type Method Description protected IStream
HttpChannelOverHTTP2. getStream()
IStream
HttpTransportOverHTTP2. getStream()
Methods in org.eclipse.jetty.http2.server with parameters of type IStream Modifier and Type Method Description void
HTTP2ServerConnection. onData(IStream stream, DataFrame frame, Callback callback)
void
HTTP2ServerConnection. onNewStream(Connector connector, IStream stream, HeadersFrame frame)
void
HTTP2ServerConnection. onStreamFailure(IStream stream, java.lang.Throwable failure, Callback callback)
boolean
HTTP2ServerConnection. onStreamTimeout(IStream stream, java.lang.Throwable failure)
void
HTTP2ServerConnection. onTrailers(IStream stream, HeadersFrame frame)
void
HTTP2ServerConnection. push(Connector connector, IStream stream, MetaData.Request request)
void
HttpTransportOverHTTP2. setStream(IStream stream)
-