zeroconf 0.18.0

cross-platform library that wraps ZeroConf/mDNS implementations like Bonjour or Avahi
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Trait definition for cross-platform event loop

use crate::Result;
use std::time::Duration;

/// A handle on the underlying implementation to poll the event loop. Typically, `poll()`
/// is called in a loop to keep a `MdnsService` or `MdnsBrowser` running.
pub trait TEventLoop {
    /// Polls for new events.
    fn poll(&self, timeout: Duration) -> Result<()>;
}