[][src]Struct joyent_tokio_zookeeper::WatchGlobally

pub struct WatchGlobally(_);

Proxy for ZooKeeper that adds watches for initiated operations.

Triggered watches produce events on the global watcher stream.

Implementations

impl WatchGlobally[src]

pub fn exists(
    self,
    path: &str
) -> impl Future<Item = (ZooKeeper, 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 is 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 node's data. When the watch triggers, an event is sent to the global watcher stream.

pub fn get_children(
    self,
    path: &str
) -> impl Future<Item = (ZooKeeper, Option<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. When the watch triggers, an event is sent to the global watcher stream.

pub fn get_data(
    self,
    path: &str
) -> impl Future<Item = (ZooKeeper, Option<(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. When the watch triggers, an event is sent to the global watcher stream.

Trait Implementations

impl Clone for WatchGlobally[src]

impl Debug for WatchGlobally[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.