Files
tokio/tokio-uds/src/incoming.rs
T
Carl Lerche c8e710d39e Import tokio-uds (#365)
This imports tokio-uds from the dedicated repo.
2018-05-14 14:48:32 -07:00

28 lines
511 B
Rust

use {UnixListener, UnixStream};
use futures::{Stream, Poll};
use std::io;
/// Stream of listeners
#[derive(Debug)]
pub struct Incoming {
inner: UnixListener,
}
impl Incoming {
pub(crate) fn new(listener: UnixListener) -> Incoming {
Incoming { inner: listener }
}
}
impl Stream for Incoming {
type Item = UnixStream;
type Error = io::Error;
fn poll(&mut self) -> Poll<Option<Self::Item>, io::Error> {
Ok(Some(try_ready!(self.inner.poll_accept()).0).into())
}
}