Hi, On Sun, Sep 27, 2015 at 4:04 PM, Muhui Jiang <[email protected]> wrote: > Hi > > A few days ago. Simone told me Jetty can send a single priority frame. > > According to RFC7540. Stream priorities can be changed using priority frame. > > I find that only the session has a function named priority to send a > priority frame. > > Like this: > > session.priority(new PriorityFrame(1, 255, false), Callback.NOOP);
PriorityFrame has 2 constructors. One of them takes 2 streamIds, the actual stream id and the parent stream id. This should be enough to cover your case: you send a PriorityFrame(streamIdA, streamIdC, ...) -- 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
