pub struct PortWatcherProxy { /* private fields */ }
Implementations§
Source§impl PortWatcherProxy
impl PortWatcherProxy
Sourcepub fn new(channel: AsyncChannel) -> Self
pub fn new(channel: AsyncChannel) -> Self
Create a new Proxy for fuchsia.hardware.network/PortWatcher.
Sourcepub fn take_event_stream(&self) -> PortWatcherEventStream
pub fn take_event_stream(&self) -> PortWatcherEventStream
Get a Stream of events from the remote end of the protocol.
§Panics
Panics if the event stream was already taken.
Sourcepub fn watch(
&self,
) -> QueryResponseFut<DevicePortEvent, DefaultFuchsiaResourceDialect>
pub fn watch( &self, ) -> QueryResponseFut<DevicePortEvent, DefaultFuchsiaResourceDialect>
Get the next port event.
The first N calls return [DevicePortEvent.existing
] where N is the
number of ports present on the device at the time of the watcher’s
creation. The next call returns [DevicePortEvent.idle
] to indicate the
end of existing ports. Subsequent calls block until a port is added
([DevicePortEvent.added
]) or removed ([DevicePortEvent.removed
]).
The server closes the PortWatcher
channel with ZX_ERR_CANCELED
if
the number of unread events reaches a server-selected limit that is at
least two times MAX_PORTS
. Clients are encouraged to maintain a
hanging call to Watch
at all times to avoid triggering this condition.
- response
event
next port event.
Trait Implementations§
Source§impl Clone for PortWatcherProxy
impl Clone for PortWatcherProxy
Source§fn clone(&self) -> PortWatcherProxy
fn clone(&self) -> PortWatcherProxy
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for PortWatcherProxy
impl Debug for PortWatcherProxy
Source§impl PortWatcherProxyInterface for PortWatcherProxy
impl PortWatcherProxyInterface for PortWatcherProxy
type WatchResponseFut = QueryResponseFut<DevicePortEvent>
fn watch(&self) -> Self::WatchResponseFut
Source§impl Proxy for PortWatcherProxy
impl Proxy for PortWatcherProxy
Source§type Protocol = PortWatcherMarker
type Protocol = PortWatcherMarker
Proxy
controls.