3 stable releases

1.2.0 May 1, 2021
1.1.0 Mar 20, 2021
1.0.3 Feb 14, 2021
1.0.2 Oct 4, 2020
1.0.1 Sep 29, 2020

#2718 in Asynchronous

Download history 4666/week @ 2024-12-01 4229/week @ 2024-12-08 6314/week @ 2024-12-15 2457/week @ 2024-12-22 2326/week @ 2024-12-29 4536/week @ 2025-01-05 5733/week @ 2025-01-12 5372/week @ 2025-01-19 4733/week @ 2025-01-26 8152/week @ 2025-02-02 6031/week @ 2025-02-09 4847/week @ 2025-02-16 5347/week @ 2025-02-23 3832/week @ 2025-03-02 5520/week @ 2025-03-09 4953/week @ 2025-03-16

20,242 downloads per month

Apache-2.0 OR MIT

9KB
55 lines

nb-connect (deprecated)

Build License Cargo Documentation

This crate is now deprecated in favor of socket2.

Non-blocking TCP or Unix connect.

This crate allows you to create a TcpStream or a UnixStream in a non-blocking way, without waiting for the connection to become fully established.

Examples

use polling::{Event, Poller};
use std::time::Duration;

// Create a pending TCP connection.
let stream = nb_connect::tcp(([127, 0, 0, 1], 80))?;

// Create a poller that waits for the stream to become writable.
let poller = Poller::new()?;
poller.add(&stream, Event::writable(0))?;

// Wait for at most 1 second.
if poller.wait(&mut Vec::new(), Some(Duration::from_secs(1)))? == 0 {
    println!("timeout");
} else if let Some(err) = stream.take_error()? {
    println!("error: {}", err);
} else {
    println!("connected");
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~270–485KB