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 interfaceISessionThe SPI interface for implementing an HTTP/2 session.Classes in org.eclipse.jetty.http2 that implement Session Modifier and Type Class Description classHTTP2SessionMethods in org.eclipse.jetty.http2 with parameters of type Session Modifier and Type Method Description protected voidHTTP2Session. notifyClose(Session session, GoAwayFrame frame, org.eclipse.jetty.util.Callback callback)protected voidHTTP2Session. notifyFailure(Session session, java.lang.Throwable failure, org.eclipse.jetty.util.Callback callback)protected voidHTTP2Session. notifyGoAway(Session session, GoAwayFrame frame)protected booleanHTTP2Session. notifyIdleTimeout(Session session)protected voidHTTP2Session. notifyPing(Session session, PingFrame frame)protected voidHTTP2Session. notifyReset(Session session, ResetFrame frame)protected voidHTTP2Session. 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 SessionStream. getSession()Methods in org.eclipse.jetty.http2.api with parameters of type Session Modifier and Type Method Description voidSession.Listener.Adapter. onClose(Session session, GoAwayFrame frame)voidSession.Listener. onClose(Session session, GoAwayFrame frame)default voidSession.Listener. onClose(Session session, GoAwayFrame frame, org.eclipse.jetty.util.Callback callback)Callback method invoked when a GOAWAY frame caused the session to be closed.voidSession.Listener.Adapter. onFailure(Session session, java.lang.Throwable failure)voidSession.Listener. onFailure(Session session, java.lang.Throwable failure)default voidSession.Listener. onFailure(Session session, java.lang.Throwable failure, org.eclipse.jetty.util.Callback callback)Callback method invoked when a failure has been detected for this session.default voidSession.Listener. onGoAway(Session session, GoAwayFrame frame)Callback method invoked when a GOAWAY frame has been received.booleanSession.Listener.Adapter. onIdleTimeout(Session session)booleanSession.Listener. onIdleTimeout(Session session)Callback method invoked when the idle timeout expired.voidSession.Listener.Adapter. onPing(Session session, PingFrame frame)voidSession.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:voidSession.Listener.Adapter. onReset(Session session, ResetFrame frame)voidSession.Listener. onReset(Session session, ResetFrame frame)Callback method invoked when a RST_STREAM frame has been received for an unknown stream.voidSession.Listener.Adapter. onSettings(Session session, SettingsFrame frame)voidSession.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 voidServerSessionListener.Adapter. onAccept(Session session)voidServerSessionListener. 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 classHTTP2ClientSessionFields in org.eclipse.jetty.http2.client with type parameters of type Session Modifier and Type Field Description private org.eclipse.jetty.util.Promise<Session>HTTP2ClientConnectionFactory.HTTP2ClientConnection. promiseMethod parameters in org.eclipse.jetty.http2.client with type arguments of type Session Modifier and Type Method Description voidHTTP2Client. accept(org.eclipse.jetty.util.ssl.SslContextFactory sslContextFactory, java.nio.channels.SocketChannel channel, Session.Listener listener, org.eclipse.jetty.util.Promise<Session> promise)voidHTTP2Client. connect(java.net.InetSocketAddress address, Session.Listener listener, org.eclipse.jetty.util.Promise<Session> promise)voidHTTP2Client. connect(org.eclipse.jetty.util.ssl.SslContextFactory sslContextFactory, java.net.InetSocketAddress address, Session.Listener listener, org.eclipse.jetty.util.Promise<Session> promise)voidHTTP2Client. connect(org.eclipse.jetty.util.ssl.SslContextFactory sslContextFactory, java.net.InetSocketAddress address, Session.Listener listener, org.eclipse.jetty.util.Promise<Session> promise, java.util.Map<java.lang.String,java.lang.Object> context)private java.util.Map<java.lang.String,java.lang.Object>HTTP2Client. contextFrom(org.eclipse.jetty.util.ssl.SslContextFactory sslContextFactory, java.net.InetSocketAddress address, Session.Listener listener, org.eclipse.jetty.util.Promise<Session> promise, java.util.Map<java.lang.String,java.lang.Object> context)Constructor parameters in org.eclipse.jetty.http2.client with type arguments of type Session Constructor Description HTTP2ClientConnection(HTTP2Client client, org.eclipse.jetty.io.ByteBufferPool byteBufferPool, java.util.concurrent.Executor executor, org.eclipse.jetty.io.EndPoint endpoint, ISession session, int bufferSize, org.eclipse.jetty.util.Promise<Session> promise, Session.Listener listener) -
Uses of Session in org.eclipse.jetty.http2.client.http
Fields in org.eclipse.jetty.http2.client.http declared as Session Modifier and Type Field Description private SessionHttpChannelOverHTTP2. sessionprivate SessionHttpConnectionOverHTTP2. sessionMethods in org.eclipse.jetty.http2.client.http that return Session Modifier and Type Method Description SessionHttpChannelOverHTTP2. getSession()SessionHttpConnectionOverHTTP2. getSession()Methods in org.eclipse.jetty.http2.client.http with parameters of type Session Modifier and Type Method Description protected HttpConnectionOverHTTP2HttpClientTransportOverHTTP2. newHttpConnection(org.eclipse.jetty.client.HttpDestination destination, Session session)voidHttpClientTransportOverHTTP2.SessionListenerPromise. onClose(Session session, GoAwayFrame frame)voidHttpClientTransportOverHTTP2.SessionListenerPromise. onFailure(Session session, java.lang.Throwable failure)voidHttpClientTransportOverHTTP2.SessionListenerPromise. onGoAway(Session session, GoAwayFrame frame)booleanHttpClientTransportOverHTTP2.SessionListenerPromise. onIdleTimeout(Session session)private voidHttpClientTransportOverHTTP2.SessionListenerPromise. onServerPreface(Session session)voidHttpClientTransportOverHTTP2.SessionListenerPromise. onSettings(Session session, SettingsFrame frame)voidHttpClientTransportOverHTTP2.SessionListenerPromise. succeeded(Session session)Method parameters in org.eclipse.jetty.http2.client.http with type arguments of type Session Modifier and Type Method Description protected voidHttpClientTransportOverHTTP2. connect(org.eclipse.jetty.util.ssl.SslContextFactory sslContextFactory, java.net.InetSocketAddress address, Session.Listener listener, org.eclipse.jetty.util.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(org.eclipse.jetty.client.HttpDestination destination, HttpConnectionOverHTTP2 connection, Session session)HttpConnectionOverHTTP2(org.eclipse.jetty.client.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 classHTTP2ServerSessionFields in org.eclipse.jetty.http2.server with type parameters of type Session Modifier and Type Field Description private java.util.Set<Session>AbstractHTTP2ServerConnectionFactory.HTTP2SessionContainer. sessionsMethods 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 private java.util.Map<java.lang.Integer,java.lang.Integer>HTTP2ServerSession. notifyPreface(Session session)voidRawHTTP2ServerConnectionFactory.RawServerSessionListener. onAccept(Session session)voidHTTP2ServerConnectionFactory.HTTPServerSessionListener. onClose(Session session, GoAwayFrame frame, org.eclipse.jetty.util.Callback callback)voidRawHTTP2ServerConnectionFactory.RawServerSessionListener. onClose(Session session, GoAwayFrame frame)voidHTTP2ServerConnectionFactory.HTTPServerSessionListener. onFailure(Session session, java.lang.Throwable failure, org.eclipse.jetty.util.Callback callback)voidRawHTTP2ServerConnectionFactory.RawServerSessionListener. onFailure(Session session, java.lang.Throwable failure)voidRawHTTP2ServerConnectionFactory.RawServerSessionListener. onGoAway(Session session, GoAwayFrame frame)booleanHTTP2ServerConnectionFactory.HTTPServerSessionListener. onIdleTimeout(Session session)booleanRawHTTP2ServerConnectionFactory.RawServerSessionListener. onIdleTimeout(Session session)voidRawHTTP2ServerConnectionFactory.RawServerSessionListener. onPing(Session session, PingFrame frame)java.util.Map<java.lang.Integer,java.lang.Integer>HTTP2ServerConnectionFactory.HTTPServerSessionListener. onPreface(Session session)java.util.Map<java.lang.Integer,java.lang.Integer>RawHTTP2ServerConnectionFactory.RawServerSessionListener. onPreface(Session session)voidRawHTTP2ServerConnectionFactory.RawServerSessionListener. onReset(Session session, ResetFrame frame)voidRawHTTP2ServerConnectionFactory.RawServerSessionListener. onSettings(Session session, SettingsFrame frame)
-