Struct tokio_zookeeper::WatchGlobally[][src]

pub struct WatchGlobally(_);

Proxy for ZooKeeper that adds watches for initiated operations.

Triggered watches produce events on the global watcher stream.

Methods

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

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.

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 Debug for WatchGlobally
[src]

Formats the value using the given formatter. Read more

impl Clone for WatchGlobally
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations