zookeeper-cpp
ZooKeeper Client for C++
|
Classes | |
struct | check_data |
struct | create_data |
struct | erase_data |
struct | set_data |
Public Member Functions | |
op (const op &) | |
op (op &&) noexcept | |
op & | operator= (const op &)=delete |
op & | operator= (op &&)=delete |
op_type | type () const |
const check_data & | as_check () const |
const create_data & | as_create () const |
const erase_data & | as_erase () const |
const set_data & | as_set () const |
Static Public Member Functions | |
static op | check (std::string path, version check=version::any()) |
Check that the given path exists with the provided version check (which can be version::any ). More... | |
static op | create (std::string path, buffer data, acl rules, create_mode mode=create_mode::normal) |
static op | create (std::string path, buffer data, create_mode mode=create_mode::normal) |
static op | erase (std::string path, version check=version::any()) |
static op | set (std::string path, buffer data, version check=version::any()) |
|
static |
Check that the given path exists with the provided version check (which can be version::any
).
|
static |
|
static |
|
static |