以下是一个示例程序:
extern crate futures;
extern crate tokio_core;
use futures::{Async, Future, Stream};
use tokio_core::reactor::Core;
use tokio_core::net::TcpListener;
fn main() {
let mut core = Core::new().unwrap();
futures::sync::oneshot::spawn(
TcpListener::bind(&"127.0.0.1:5000".parse().unwrap(), &core.handle())
.unwrap()
.incoming()
.for_each(|_| {
println!("connection received");
Ok(())
}),
&core,
);
let ft = futures::future::poll_fn::<(), (), _>(|| {
std::thread::sleep_ms(50);
Ok(Async::NotReady)
});
core.run(ft);
}
如您所见,我调用oneshot::spawn
然后立即删除其返回值,这理论上应取消内部包含的未来。但是,当我运行此程序然后连接到127.0.0.1:5000
时,它仍会打印“已收到连接”。为什么这样做?我希望它不会打印任何内容并删除TcpListener
,从端口解除绑定。
答案 0 :(得分:4)
这是(现已修复)bug in the futures
crate;版本0.1.18
应该包含修复程序。
它在keep_running: bool
/ SpawnHandle
中使用Executor
的反转值。