Module: ZK::Client

Defined in:
lib/zk/client.rb,
lib/zk/client/base.rb,
lib/zk/client/threaded.rb,
lib/zk/client/unixisms.rb,
lib/zk/client/state_mixin.rb,
lib/zk/client/conveniences.rb

Overview

TODO:

ACL support is pretty much unused currently. If anyone has suggestions, hints, use-cases, examples, etc. by all means please file a bug.

A ruby-friendly wrapper around the low-level zookeeper drivers.

You're probably looking for Base and Threaded.

Once you've had a look there, take a look at Conveniences, StateMixin, and Unixisms

Defined Under Namespace

Modules: Conveniences, StateMixin, Unixisms Classes: Base, Threaded

Constant Summary collapse

DEFAULT_TIMEOUT =
10

Class Method Summary collapse

Class Method Details

.new(*a, &b) ⇒ Object



26
27
28
# File 'lib/zk/client.rb', line 26

def new(*a, &b)
  Threaded.new(*a, &b)
end