Uses of Interface
org.eclipse.jetty.http3.api.Session
Packages that use Session
Package
Description
- 
Uses of Session in org.eclipse.jetty.http3
Classes in org.eclipse.jetty.http3 that implement SessionMethods in org.eclipse.jetty.http3 that return types with arguments of type SessionMethod parameters in org.eclipse.jetty.http3 with type arguments of type SessionModifier and TypeMethodDescriptionvoidHTTP3Session.close(long error, String reason, Promise.Invocable<Session> promise) Called when an external event wants to initiate the close of this session locally, for example a close at the network level (due to e.g. stopping a component) or a timeout.voidHTTP3Session.goAway(boolean graceful, Promise.Invocable<Session> promise)  - 
Uses of Session in org.eclipse.jetty.http3.api
Subinterfaces of Session in org.eclipse.jetty.http3.apiModifier and TypeInterfaceDescriptionstatic interfaceThe client-side HTTP/3 API representing a connection with a server.static interfaceThe server-side HTTP/3 API representing a connection with a client.Methods in org.eclipse.jetty.http3.api that return SessionModifier and TypeMethodDescriptionStream.getSession()Get the session this stream is associated to.Methods in org.eclipse.jetty.http3.api with parameters of type SessionModifier and TypeMethodDescriptiondefault voidSession.Listener.onDisconnect(Session session, long error, String reason) Callback method invoked when the underlying transport has been disconnected.default voidCallback 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.default booleanSession.Listener.onIdleTimeout(Session session) Callback method invoked when the idle timeout has expired.Callback method invoked just before the initial SETTINGS frame is sent to the remote peer, to gather the configuration settings that the local peer wants to send to the remote peer.default voidSession.Listener.onSettings(Session session, SettingsFrame frame) Callback method invoked when a SETTINGS frame has been received.Method parameters in org.eclipse.jetty.http3.api with type arguments of type SessionModifier and TypeMethodDescriptiondefault voidSession.goAway(boolean graceful, Promise.Invocable<Session> promise) Initiates the shutdown of this session by sending a GOAWAY frame to the other peer. - 
Uses of Session in org.eclipse.jetty.http3.client
Classes in org.eclipse.jetty.http3.client that implement Session