Hi, On Fri, Sep 25, 2015 at 9:54 AM, Muhui Jiang <[email protected]> wrote: > Hi > > Is it available for jetty to send continuation frame after a headers frame > whose end_flag is false on a specific stream_id. I reviewed the javadoc It > seems that the methods related to the continuation frame has no param like > stream_id or something like this.(Using http/2 protocol). Many Thanks
We don't support sending CONTINUATION frames explicitly from the API. However, we do have ContinuationFrame and the mechanism is supported in Jetty. If you want to explicitly send continuation frames, then you have to use the lower level Jetty support for it, see class HeadersGenerator. -- Simone Bordet ---- http://cometd.org http://webtide.com Developer advice, training, services and support from the Jetty & CometD experts. _______________________________________________ jetty-users mailing list [email protected] To change your delivery options, retrieve your password, or unsubscribe from this list, visit https://dev.eclipse.org/mailman/listinfo/jetty-users
