| 641 | |
| 642 | |
| 643 | int ZooKeeper::getChildren( |
| 644 | const string& path, |
| 645 | bool watch, |
| 646 | vector<string>* results) |
| 647 | { |
| 648 | return dispatch( |
| 649 | process, |
| 650 | &ZooKeeperProcess::getChildren, |
| 651 | path, |
| 652 | watch, |
| 653 | results).get(); |
| 654 | } |
| 655 | |
| 656 | |
| 657 | int ZooKeeper::set(const string& path, const string& data, int version) |