From 4ef772b2db9fdf19625e428f1031409994b4c8e6 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 12 Dec 2017 18:32:50 -0600 Subject: Remove `Handle` argument from I/O constructors (#61) This commit removes the `Handle` argument from the following constructors * `TcpListener::bind` * `TcpStream::connect` * `UdpSocket::bind` The `Handle` argument remains on the various `*_std` constructors as they're more low-level, but this otherwise is intended to set forth a precedent of by default not taking `Handle` arguments and instead relying on the global `Handle::default` return value when necesary. --- examples/echo-udp.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'examples/echo-udp.rs') diff --git a/examples/echo-udp.rs b/examples/echo-udp.rs index 0bcc3807..f7e2bf09 100644 --- a/examples/echo-udp.rs +++ b/examples/echo-udp.rs @@ -20,7 +20,6 @@ use std::net::SocketAddr; use futures::{Future, Poll}; use tokio::net::UdpSocket; -use tokio::reactor::Handle; struct Server { socket: UdpSocket, @@ -54,8 +53,7 @@ fn main() { let addr = env::args().nth(1).unwrap_or("127.0.0.1:8080".to_string()); let addr = addr.parse::().unwrap(); - let handle = Handle::default(); - let socket = UdpSocket::bind(&addr, &handle).unwrap(); + let socket = UdpSocket::bind(&addr).unwrap(); println!("Listening on: {}", socket.local_addr().unwrap()); // Next we'll create a future to spawn (the one we defined above) and then -- cgit v1.2.3