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 TypeMethodDescriptionvoidHTTP3Stream.data(DataFrame frame, Promise.Invocable<Stream> promise) voidHTTP3Stream.disconnect(long appErrorCode, Throwable failure, Promise.Invocable<Stream> promise) voidHTTP3Stream.trailer(HeadersFrame frame, Promise.Invocable<Stream> promise) protected voidHTTP3Stream.write(Frame frame, Promise.Invocable<Stream> promise) voidHTTP3Stream.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 interfaceThe client side version ofStream.static interfaceThe 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 TypeMethodDescriptionvoidStream.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.voidStream.disconnect(long appErrorCode, Throwable failure, Promise.Invocable<Stream> promise) Abruptly terminates this stream with the given error.voidSession.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.voidStream.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.voidStream.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 TypeMethodDescriptionvoidHTTP3SessionClient.newRequest(HeadersFrame frame, Stream.Client.Listener listener, Promise.Invocable<Stream> promise)