Struct tokio_zookeeper::WithWatcher[][src]

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.

Methods

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

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.

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

Formats the value using the given formatter. Read more

impl Clone for WithWatcher
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for WithWatcher

impl Sync for WithWatcher