How does vertx `HTTPServerResponse#setChunked` int...
# vertx
q
How does vertx
HTTPServerResponse#setChunked
interact with HTTP/2? Docs said it does nothing, and I'm assuming because HTTP/2 is smarter, that it's as if
setChunked is true?
d
Isn’t http/2 content always chunked? That is, the response is always sent in N data frames which are blocks of bytes. The maximum size of these frames can be adjusted through Http2Settings.setMaxFrameSize(int) (HttpServerOptions.setInitialSettings(Http2Settings) )