void |
ZKNaming.bind(String path,
String URI) |
Binds the specified path with a URI
|
void |
ZKNaming.bind(String path,
String host,
String port) |
Binds the specified path with a host port pair
|
void |
ZKNaming.bind(ZKRecord record) |
Binds the specified record containing a path and a URI pair
|
Collection<ZKRecord> |
ZKNaming.listRecords(String path) |
Returns a collection of records representing the child nodes of a zNode.
|
ZKRecord |
ZKNaming.lookup(String path) |
Returns the record associated with the specified path.
|
void |
ZKNaming.rebind(String path,
String URI) |
Rebinds the specified path with a URI
|
void |
ZKNaming.rebind(String path,
String host,
String port) |
Rebinds the specified path with a host port pair
|
void |
ZKNaming.rebind(ZKRecord record) |
Rebinds the specified record.
|
void |
ZKNaming.unbind(String path,
String URI) |
Destroys the binding for the specified path with a URI.
|
void |
ZKNaming.unbind(String path,
String host,
String port) |
Destroys the binding for the specified path with a host port pair.
|
void |
ZKNaming.unbind(ZKRecord record) |
Destroys the binding for the specified record.
|