Uses of Interface
org.eclipse.jetty.http3.api.Stream
Packages that use Stream
Package
Description
-
Uses of Stream in org.eclipse.jetty.http3
Classes in org.eclipse.jetty.http3 that implement StreamMethods in org.eclipse.jetty.http3 that return types with arguments of type StreamMethod parameters in org.eclipse.jetty.http3 with type arguments of type StreamModifier and TypeMethodDescriptionvoid
HTTP3Stream.data
(DataFrame frame, Promise.Invocable<Stream> promise) void
HTTP3Stream.disconnect
(long appErrorCode, Throwable failure, Promise.Invocable<Stream> promise) void
HTTP3Stream.trailer
(HeadersFrame frame, Promise.Invocable<Stream> promise) protected void
HTTP3Stream.write
(Frame frame, Promise.Invocable<Stream> promise) void
HTTP3Stream.writeFrame
(Frame frame, Promise.Invocable<Stream> promise) -
Uses of Stream in org.eclipse.jetty.http3.api
Subinterfaces of Stream in org.eclipse.jetty.http3.apiModifier and TypeInterfaceDescriptionstatic interface
The client side version ofStream
.static interface
The server side version ofStream
.Methods in org.eclipse.jetty.http3.api that return types with arguments of type StreamMethod parameters in org.eclipse.jetty.http3.api with type arguments of type StreamModifier and TypeMethodDescriptionvoid
Stream.data
(DataFrame frame, Promise.Invocable<Stream> promise) Sends the given DATA frame containing some or all the bytes of the request content or of the response content.void
Stream.disconnect
(long appErrorCode, Throwable failure, Promise.Invocable<Stream> promise) Abruptly terminates this stream with the given error.void
Session.Client.newRequest
(HeadersFrame frame, Stream.Client.Listener listener, Promise.Invocable<Stream> promise) Makes a request by creating an HTTP/3 stream and sending the given HEADERS frame.void
Stream.Server.respond
(HeadersFrame frame, Promise.Invocable<Stream> promise) Responds to a request performed viaSession.Client.newRequest(HeadersFrame, Client.Listener, Promise.Invocable)
, sending the given HEADERS frame containing the response status code and response headers.void
Stream.trailer
(HeadersFrame frame, Promise.Invocable<Stream> promise) Sends the given HEADERS frame containing the trailer headers. -
Uses of Stream in org.eclipse.jetty.http3.client
Method parameters in org.eclipse.jetty.http3.client with type arguments of type StreamModifier and TypeMethodDescriptionvoid
HTTP3SessionClient.newRequest
(HeadersFrame frame, Stream.Client.Listener listener, Promise.Invocable<Stream> promise)