[][src]Struct joyent_tokio_zookeeper::WithWatcher

pub struct WithWatcher(_);

Proxy for ZooKeeper that adds non-global watches for initiated operations.

Events from triggered watches are yielded through returned oneshot channels. All events are also produced on the global watcher stream.

Implementations

impl WithWatcher[src]

pub fn exists(
    self,
    path: &str
) -> impl Future<Item = (ZooKeeper, Receiver<WatchedEvent>, Option<Stat>), Error = Error>
[src]

Return the Stat of the node of the given path, or None if the node does not exist.

If no errors occur, a watch will be left on the node at the given path. The watch is triggered by any successful operation that creates or deletes the node, or sets the data on the node, and in turn causes the included oneshot::Receiver to resolve.

pub fn get_children(
    self,
    path: &str
) -> impl Future<Item = (ZooKeeper, Option<(Receiver<WatchedEvent>, Vec<String>)>), Error = Error>
[src]

Return the names of the children of the node at the given path, or None if the node does not exist.

The returned list of children is not sorted and no guarantee is provided as to its natural or lexical order.

If no errors occur, a watch is left on the node at the given path. The watch is triggered by any successful operation that deletes the node at the given path, or creates or deletes a child of that node, and in turn causes the included oneshot::Receiver to resolve.

pub fn get_data(
    self,
    path: &str
) -> impl Future<Item = (ZooKeeper, Option<(Receiver<WatchedEvent>, Vec<u8>, Stat)>), Error = Error>
[src]

Return the data and the Stat of the node at the given path, or None if it does not exist.

If no errors occur, a watch is left on the node at the given path. The watch is triggered by any successful operation that sets the node's data, or deletes it, and in turn causes the included oneshot::Receiver to resolve.

Trait Implementations

impl Clone for WithWatcher[src]

impl Debug for WithWatcher[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.