zoo_wget_children

\brief lists the children of a node synchronously.

This function is similar to \ref zoo_get_children except it allows one specify a watcher object rather than a boolean watch flag.

\param zh the zookeeper handle obtained by a call to \ref zookeeper_init \param path the name of the node. Expressed as a file name with slashes separating ancestors of the node. \param watcher if non-null, a watch will be set at the server to notify the client if the node changes. \param watcherCtx user specific data, will be passed to the watcher callback. Unlike the global context set by \ref zookeeper_init, this watcher context is associated with the given instance of the watcher only. \param strings return value of children paths. \return the return code of the function. ZOK operation completed successfully ZNONODE the node does not exist. ZNOAUTH the client does not have permission. ZBADARGUMENTS - invalid input parameters ZINVALIDSTATE - zhandle state is either ZOO_SESSION_EXPIRED_STATE or ZOO_AUTH_FAILED_STATE ZMARSHALLINGERROR - failed to marshall a request; possibly, out of memory

extern (C)
int
zoo_wget_children

Meta