Uses of Interface
org.eclipse.jetty.http2.ISession
-
Packages that use ISession Package Description org.eclipse.jetty.http2 org.eclipse.jetty.http2.client org.eclipse.jetty.http2.server -
-
Uses of ISession in org.eclipse.jetty.http2
Classes in org.eclipse.jetty.http2 that implement ISession Modifier and Type Class Description class
HTTP2Session
Methods in org.eclipse.jetty.http2 that return ISession Modifier and Type Method Description ISession
HTTP2Connection. getSession()
ISession
HTTP2Stream. getSession()
ISession
IStream. getSession()
Methods in org.eclipse.jetty.http2 with parameters of type ISession Modifier and Type Method Description 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)
protected void
AbstractFlowControlStrategy. onSessionStalled(ISession session)
protected void
AbstractFlowControlStrategy. onSessionUnstalled(ISession session)
void
AbstractFlowControlStrategy. onWindowUpdate(ISession session, IStream stream, WindowUpdateFrame frame)
void
FlowControlStrategy. onWindowUpdate(ISession session, IStream stream, WindowUpdateFrame frame)
protected void
BufferingFlowControlStrategy. sendWindowUpdate(IStream stream, ISession session, WindowUpdateFrame frame)
void
AbstractFlowControlStrategy. updateInitialStreamWindow(ISession session, int initialStreamWindow, boolean local)
void
FlowControlStrategy. updateInitialStreamWindow(ISession session, int initialStreamWindow, boolean local)
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 ISession Constructor Description HTTP2Connection(ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, EndPoint endPoint, ISession session, int bufferSize)
HTTP2Connection(ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, EndPoint endPoint, Parser parser, ISession session, int bufferSize)
Deprecated.HTTP2Stream(Scheduler scheduler, ISession session, int streamId, boolean local)
-
Uses of ISession in org.eclipse.jetty.http2.client
Classes in org.eclipse.jetty.http2.client that implement ISession Modifier and Type Class Description class
HTTP2ClientSession
-
Uses of ISession in org.eclipse.jetty.http2.server
Classes in org.eclipse.jetty.http2.server that implement ISession Modifier and Type Class Description class
HTTP2ServerSession
Constructors in org.eclipse.jetty.http2.server with parameters of type ISession Constructor Description HTTP2ServerConnection(ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, EndPoint endPoint, HttpConfiguration httpConfig, ISession session, int inputBufferSize, ServerSessionListener listener)
HTTP2ServerConnection(ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, EndPoint endPoint, HttpConfiguration httpConfig, ServerParser parser, ISession session, int inputBufferSize, ServerSessionListener listener)
Deprecated.
-