jetty.project icon indicating copy to clipboard operation
jetty.project copied to clipboard

Missing HttpChannel.Listener.onResponseTrailers(Request)

Open joakime opened this issue 5 years ago • 3 comments

Jetty version 9.4.29

Description In the process of implementing ByteCount API for Issue #4954 it was discovered that there is no Response equivalent for the HttpChannel.Listener.onRequestTrailer(Request request) method.

https://github.com/eclipse/jetty.project/blob/77c232aed8a45c818fd27232278d9f95a021095e/jetty-server/src/main/java/org/eclipse/jetty/server/HttpChannel.java#L1095-L1102

We should add a HttpChannel.Listener.onResponse(Request request) method.

joakime avatar Jun 09 '20 19:06 joakime

This issue has been automatically marked as stale because it has been a full year without activity. It will be closed if no further activity occurs. Thank you for your contributions.

stale[bot] avatar Jun 20 '21 13:06 stale[bot]

This issue has been closed due to it having no activity.

stale[bot] avatar Jul 21 '21 02:07 stale[bot]

This issue has been automatically marked as stale because it has been a full year without activity. It will be closed if no further activity occurs. Thank you for your contributions.

github-actions[bot] avatar Jul 22 '22 00:07 github-actions[bot]

This issue has been automatically marked as stale because it has been a full year without activity. It will be closed if no further activity occurs. Thank you for your contributions.

github-actions[bot] avatar Jul 23 '23 00:07 github-actions[bot]

@lorban can you check what's the status of this issue in Jetty 12?

sbordet avatar Jul 23 '23 15:07 sbordet

The 12.0.x EventsHandler has a void onResponseTrailersComplete(Request request, HttpFields trailers) event that should cover this.

lorban avatar Jul 24 '23 09:07 lorban