本文简要介绍rust语言中 std::os::unix::net::UnixListener.set_nonblocking
的用法。
用法
pub fn set_nonblocking(&self, nonblocking: bool) -> Result<()>
将套接字移入或移出非阻塞模式。
这将导致 accept
操作变为非阻塞,即立即从他们的调用中返回。如果 IO 操作成功,则返回Ok
,无需进一步操作。如果 IO 操作无法完成并需要重试,则返回类型为 io::ErrorKind::WouldBlock
的错误。
例子
use std::os::unix::net::UnixListener;
fn main() -> std::io::Result<()> {
let listener = UnixListener::bind("/path/to/the/socket")?;
listener.set_nonblocking(true).expect("Couldn't set non blocking");
Ok(())
}
相关用法
- Rust UnixListener.accept用法及代码示例
- Rust UnixListener.bind用法及代码示例
- Rust UnixListener.incoming用法及代码示例
- Rust UnixListener.local_addr用法及代码示例
- Rust UnixListener.bind_addr用法及代码示例
- Rust UnixListener.try_clone用法及代码示例
- Rust UnixListener.take_error用法及代码示例
- Rust UnixListener用法及代码示例
- Rust UnixStream用法及代码示例
- Rust UnixStream.take_error用法及代码示例
- Rust UnixDatagram.peek_from用法及代码示例
- Rust UnixDatagram.recv_from用法及代码示例
- Rust UnixStream.read_timeout用法及代码示例
- Rust UnixDatagram.take_error用法及代码示例
- Rust UnixDatagram.peek用法及代码示例
- Rust UnixDatagram.send_to_addr用法及代码示例
- Rust UnixDatagram.read_timeout用法及代码示例
- Rust UnixDatagram.set_nonblocking用法及代码示例
- Rust UnixDatagram.connect用法及代码示例
- Rust UnixDatagram.set_read_timeout用法及代码示例
- Rust UnixStream.peer_addr用法及代码示例
- Rust UnixDatagram.send_to用法及代码示例
- Rust UnixStream.send_vectored_with_ancillary用法及代码示例
- Rust UnixStream.peek用法及代码示例
- Rust UnixDatagram.shutdown用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::os::unix::net::UnixListener.set_nonblocking。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。