Uses of Interface
org.eclipse.jetty.http2.api.Session
-
-
Uses of Session in org.eclipse.jetty.http2
Subinterfaces of Session in org.eclipse.jetty.http2 Modifier and Type Interface Description interface
ISession
The SPI interface for implementing an HTTP/2 session.Classes in org.eclipse.jetty.http2 that implement Session Modifier and Type Class Description class
HTTP2Session
Methods in org.eclipse.jetty.http2 with parameters of type Session Modifier and Type Method Description protected void
HTTP2Session. notifyClose(Session session, GoAwayFrame frame, Callback callback)
protected void
HTTP2Session. notifyFailure(Session session, java.lang.Throwable failure, Callback callback)
protected void
HTTP2Session. notifyGoAway(Session session, GoAwayFrame frame)
protected boolean
HTTP2Session. notifyIdleTimeout(Session session)
protected void
HTTP2Session. notifyPing(Session session, PingFrame frame)
protected void
HTTP2Session. notifyReset(Session session, ResetFrame frame)
protected void
HTTP2Session. notifySettings(Session session, SettingsFrame frame)
-
Uses of Session in org.eclipse.jetty.http2.api
Methods in org.eclipse.jetty.http2.api that return Session Modifier and Type Method Description Session
Stream. getSession()
Methods in org.eclipse.jetty.http2.api with parameters of type Session Modifier and Type Method Description void
Session.Listener.Adapter. onClose(Session session, GoAwayFrame frame)
void
Session.Listener. onClose(Session session, GoAwayFrame frame)
default void
Session.Listener. onClose(Session session, GoAwayFrame frame, Callback callback)
Callback method invoked when a GOAWAY frame caused the session to be closed.void
Session.Listener.Adapter. onFailure(Session session, java.lang.Throwable failure)
void
Session.Listener. onFailure(Session session, java.lang.Throwable failure)
default void
Session.Listener. onFailure(Session session, java.lang.Throwable failure, Callback callback)
Callback method invoked when a failure has been detected for this session.default void
Session.Listener. onGoAway(Session session, GoAwayFrame frame)
Callback method invoked when a GOAWAY frame has been received.boolean
Session.Listener.Adapter. onIdleTimeout(Session session)
boolean
Session.Listener. onIdleTimeout(Session session)
Callback method invoked when the idle timeout expired.void
Session.Listener.Adapter. onPing(Session session, PingFrame frame)
void
Session.Listener. onPing(Session session, PingFrame frame)
Callback method invoked when a PING frame has been received.java.util.Map<java.lang.Integer,java.lang.Integer>
Session.Listener.Adapter. onPreface(Session session)
java.util.Map<java.lang.Integer,java.lang.Integer>
Session.Listener. onPreface(Session session)
Callback method invoked:void
Session.Listener.Adapter. onReset(Session session, ResetFrame frame)
void
Session.Listener. onReset(Session session, ResetFrame frame)
Callback method invoked when a RST_STREAM frame has been received for an unknown stream.void
Session.Listener.Adapter. onSettings(Session session, SettingsFrame frame)
void
Session.Listener. onSettings(Session session, SettingsFrame frame)
Callback method invoked when a SETTINGS frame has been received. -
Uses of Session in org.eclipse.jetty.http2.api.server
Methods in org.eclipse.jetty.http2.api.server with parameters of type Session Modifier and Type Method Description void
ServerSessionListener.Adapter. onAccept(Session session)
void
ServerSessionListener. onAccept(Session session)
Callback method invoked when a connection has been accepted by the server. -
Uses of Session in org.eclipse.jetty.http2.client
Classes in org.eclipse.jetty.http2.client that implement Session Modifier and Type Class Description class
HTTP2ClientSession
Method parameters in org.eclipse.jetty.http2.client with type arguments of type Session Modifier and Type Method Description void
HTTP2Client. accept(SslContextFactory sslContextFactory, java.nio.channels.SocketChannel channel, Session.Listener listener, Promise<Session> promise)
void
HTTP2Client. connect(java.net.InetSocketAddress address, Session.Listener listener, Promise<Session> promise)
void
HTTP2Client. connect(SslContextFactory sslContextFactory, java.net.InetSocketAddress address, Session.Listener listener, Promise<Session> promise)
void
HTTP2Client. connect(SslContextFactory sslContextFactory, java.net.InetSocketAddress address, Session.Listener listener, Promise<Session> promise, java.util.Map<java.lang.String,java.lang.Object> context)
-
Uses of Session in org.eclipse.jetty.http2.client.http
Methods in org.eclipse.jetty.http2.client.http that return Session Modifier and Type Method Description Session
HttpChannelOverHTTP2. getSession()
Session
HttpConnectionOverHTTP2. getSession()
Methods in org.eclipse.jetty.http2.client.http with parameters of type Session Modifier and Type Method Description protected HttpConnectionOverHTTP2
HttpClientTransportOverHTTP2. newHttpConnection(HttpDestination destination, Session session)
Method parameters in org.eclipse.jetty.http2.client.http with type arguments of type Session Modifier and Type Method Description protected void
HttpClientTransportOverHTTP2. connect(SslContextFactory sslContextFactory, java.net.InetSocketAddress address, Session.Listener listener, Promise<Session> promise, java.util.Map<java.lang.String,java.lang.Object> context)
Constructors in org.eclipse.jetty.http2.client.http with parameters of type Session Constructor Description HttpChannelOverHTTP2(HttpDestination destination, HttpConnectionOverHTTP2 connection, Session session)
HttpConnectionOverHTTP2(HttpDestination destination, Session session)
-
Uses of Session in org.eclipse.jetty.http2.server
Classes in org.eclipse.jetty.http2.server that implement Session Modifier and Type Class Description class
HTTP2ServerSession
Methods in org.eclipse.jetty.http2.server that return types with arguments of type Session Modifier and Type Method Description java.util.Set<Session>
AbstractHTTP2ServerConnectionFactory.HTTP2SessionContainer. getSessions()
Methods in org.eclipse.jetty.http2.server with parameters of type Session Modifier and Type Method Description void
HTTP2ServerConnectionFactory.HTTPServerSessionListener. onClose(Session session, GoAwayFrame frame, Callback callback)
void
HTTP2ServerConnectionFactory.HTTPServerSessionListener. onFailure(Session session, java.lang.Throwable failure, Callback callback)
boolean
HTTP2ServerConnectionFactory.HTTPServerSessionListener. onIdleTimeout(Session session)
java.util.Map<java.lang.Integer,java.lang.Integer>
HTTP2ServerConnectionFactory.HTTPServerSessionListener. onPreface(Session session)
-