标签: http asynchronous rust
是否可以在NodeJS异步样式中使用Rust实现异步HTTP服务器:
server.on('/url, function(req, resp){ // call resp.end() if you need });
我还需要能够实现挂起的GET,即当我不是立即调用resp.end时,而是稍后调用其他事件。我试过了http-rotor但是如果请求没有最终确定就会发生恐慌。
resp.end