http4s / http4s-servlet

http4s-servlet support
Apache License 2.0
6 stars 5 forks source link

Trailer fields #156

Open rossabaker opened 1 year ago

rossabaker commented 1 year ago

It should be possible add trailer field support as of Servlet 4.

It's a bit challenging, because there is an isTrailerFieldsReady: Boolean method, but no callback for when it turns false to true. We can start checking on the ReadListener's onAllDataRead, but we have to poll if it's false. Gross.