我在我的android项目中使用ktor客户端,我想在关闭连接之前获得countinous数据。下面是nodeJS应用程序给予countinuosly数据的示例。
const app = require("express")()
let count = 0
app.get("/", (req, res) => {
const headers = {
'Content-Type': 'text/event-stream',
'Connection': 'keep-alive',
'Cache-Control': 'no-cache'
}
res.writeHead(200, headers)
setInterval(() => {
res.write({data: count})
count++
}, 2000);
})
app.listen(3000, () => console.log("ok"))
我不知道如何实现这一点,我不能找到任何在互联网上也。任何帮助将不胜感激。
1条答案
按热度按时间tnkciper1#
一旦响应流对客户端可用,就可以从响应流读取数据。下面是一个示例: