pub struct ZooKeeperBuilder { /* private fields */ }
Expand description

Builder that allows customizing options for ZooKeeper connections.

Implementations§

Connect to a ZooKeeper server instance at the given address.

Session establishment is asynchronous. This constructor will initiate connection to the server and return immediately - potentially (usually) before the session is fully established. When the session is established, a ZooKeeper instance is returned, along with a “watcher” that will provide notifications of any changes in state.

If the connection to the server fails, the client will automatically try to re-connect. Only if re-connection fails is an error returned to the client. Requests that are in-flight during a disconnect may fail and have to be retried.

Set the ZooKeeper session expiry timeout.

The default timeout is dictated by the server.

Set the logger that should be used internally in the ZooKeeper client.

By default, all logging is disabled. See also the slog documentation.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.