我想使用 http4k 流式传输长响应。我打算使用Content-type: multipart/x-mixed-replace
,所以我将数据无休止地推送到客户端。在 http4k 中,我们有typealias HttpHandler = (Request) -> Response
. 但是我的处理程序无法返回响应,因为它不是我要返回的有限文档,而是无穷无尽的流。这是否意味着我应该使用其他东西来满足我的需求?
问问题
449 次