Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 64660200C59 for ; Mon, 17 Apr 2017 19:22:18 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 633F9160BAB; Mon, 17 Apr 2017 17:22:18 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 0C04B160BBC for ; Mon, 17 Apr 2017 19:22:15 +0200 (CEST) Received: (qmail 55949 invoked by uid 500); 17 Apr 2017 17:22:14 -0000 Mailing-List: contact commits-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zookeeper.apache.org Delivered-To: mailing list commits@zookeeper.apache.org Received: (qmail 55637 invoked by uid 99); 17 Apr 2017 17:22:13 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Apr 2017 17:22:13 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 7E9833A51F9 for ; Mon, 17 Apr 2017 17:22:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1010623 [19/50] - in /websites/staging/zookeeper/trunk/content: ./ doc/r3.5.3-beta/ doc/r3.5.3-beta/api/ doc/r3.5.3-beta/api/org/ doc/r3.5.3-beta/api/org/apache/ doc/r3.5.3-beta/api/org/apache/zookeeper/ doc/r3.5.3-beta/api/org/apache/zook... Date: Mon, 17 Apr 2017 17:22:10 -0000 To: commits@zookeeper.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170417172212.7E9833A51F9@svn01-us-west.apache.org> archived-at: Mon, 17 Apr 2017 17:22:18 -0000 Added: websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/ZooKeeperMain.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/ZooKeeperMain.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/ZooKeeperMain.html Mon Apr 17 17:22:07 2017 @@ -0,0 +1,405 @@ + + + + + +ZooKeeperMain (ZooKeeper 3.5.3-beta API) + + + + + + + + + + + +
+
org.apache.zookeeper
+

Class ZooKeeperMain

+
+
+ +
+
    +
  • +
    +
    +
    public class ZooKeeperMain
    +extends Object
    +
    The command line client to ZooKeeper.
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2017 The Apache Software Foundation

+ + Added: websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/ZooKeeperAdmin.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/ZooKeeperAdmin.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/ZooKeeperAdmin.html Mon Apr 17 17:22:07 2017 @@ -0,0 +1,539 @@ + + + + + +ZooKeeperAdmin (ZooKeeper 3.5.3-beta API) + + + + + + + + + + + +
+
org.apache.zookeeper.admin
+

Class ZooKeeperAdmin

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    AutoCloseable
    +
    +
    +
    +
    public class ZooKeeperAdmin
    +extends ZooKeeper
    +
    This is the main class for ZooKeeperAdmin client library. + This library is used to perform cluster administration tasks, + such as reconfigure cluster membership. The ZooKeeperAdmin class + inherits ZooKeeper and has similar usage pattern as ZooKeeper class. + Please check ZooKeeper class document for more details.
    +
    Since:
    +
    3.5.3
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ZooKeeperAdmin

        +
        public ZooKeeperAdmin(String connectString,
        +              int sessionTimeout,
        +              Watcher watcher)
        +               throws IOException
        +
        Create a ZooKeeperAdmin object which is used to perform dynamic reconfiguration + operations.
        +
        Parameters:
        connectString - comma separated host:port pairs, each corresponding to a zk + server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002" If + the optional chroot suffix is used the example would look + like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a" + where the client would be rooted at "/app/a" and all paths + would be relative to this root - ie getting/setting/etc... + "/foo/bar" would result in operations being run on + "/app/a/foo/bar" (from the server perspective).
        sessionTimeout - session timeout in milliseconds
        watcher - a watcher object which will be notified of state changes, may + also be notified for node events
        +
        Throws:
        +
        IOException - in cases of network failure
        +
        IllegalArgumentException - if an invalid chroot path is specified
        See Also:
        ZooKeeper.ZooKeeper(String, int, Watcher)
        +
      • +
      + + + +
        +
      • +

        ZooKeeperAdmin

        +
        public ZooKeeperAdmin(String connectString,
        +              int sessionTimeout,
        +              Watcher watcher,
        +              org.apache.zookeeper.client.ZKClientConfig conf)
        +               throws IOException
        +
        Create a ZooKeeperAdmin object which is used to perform dynamic reconfiguration + operations.
        +
        Parameters:
        connectString - comma separated host:port pairs, each corresponding to a zk + server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002" If + the optional chroot suffix is used the example would look + like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a" + where the client would be rooted at "/app/a" and all paths + would be relative to this root - ie getting/setting/etc... + "/foo/bar" would result in operations being run on + "/app/a/foo/bar" (from the server perspective).
        sessionTimeout - session timeout in milliseconds
        watcher - a watcher object which will be notified of state changes, may + also be notified for node events
        conf - passing this conf object gives each client the flexibility of + configuring properties differently compared to other instances
        +
        Throws:
        +
        IOException - in cases of network failure
        +
        IllegalArgumentException - if an invalid chroot path is specified
        See Also:
        ZooKeeper.ZooKeeper(String, int, Watcher, ZKClientConfig)
        +
      • +
      + + + +
        +
      • +

        ZooKeeperAdmin

        +
        public ZooKeeperAdmin(String connectString,
        +              int sessionTimeout,
        +              Watcher watcher,
        +              boolean canBeReadOnly)
        +               throws IOException
        +
        Create a ZooKeeperAdmin object which is used to perform dynamic reconfiguration + operations.
        +
        Parameters:
        connectString - comma separated host:port pairs, each corresponding to a zk + server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002" If + the optional chroot suffix is used the example would look + like: "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002/app/a" + where the client would be rooted at "/app/a" and all paths + would be relative to this root - ie getting/setting/etc... + "/foo/bar" would result in operations being run on + "/app/a/foo/bar" (from the server perspective).
        sessionTimeout - session timeout in milliseconds
        watcher - a watcher object which will be notified of state changes, may + also be notified for node events
        canBeReadOnly - whether the created client is allowed to go to + read-only mode in case of partitioning. Read-only mode + basically means that if the client can't find any majority + servers but there's partitioned server it could reach, it + connects to one in read-only mode, i.e. read requests are + allowed while write requests are not. It continues seeking for + majority in the background.
        +
        Throws:
        +
        IOException - in cases of network failure
        +
        IllegalArgumentException - if an invalid chroot path is specified
        See Also:
        ZooKeeper.ZooKeeper(String, int, Watcher, boolean)
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 The Apache Software Foundation

+ + Added: websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/class-use/ZooKeeperAdmin.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/class-use/ZooKeeperAdmin.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/class-use/ZooKeeperAdmin.html Mon Apr 17 17:22:07 2017 @@ -0,0 +1,116 @@ + + + + + +Uses of Class org.apache.zookeeper.admin.ZooKeeperAdmin (ZooKeeper 3.5.3-beta API) + + + + + + + + + + +
+

Uses of Class
org.apache.zookeeper.admin.ZooKeeperAdmin

+
+
No usage of org.apache.zookeeper.admin.ZooKeeperAdmin
+ + + + +

Copyright © 2017 The Apache Software Foundation

+ + Added: websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/package-frame.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/package-frame.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/package-frame.html Mon Apr 17 17:22:07 2017 @@ -0,0 +1,19 @@ + + + + + +org.apache.zookeeper.admin (ZooKeeper 3.5.3-beta API) + + + + +

org.apache.zookeeper.admin

+
+

Classes

+ +
+ + Added: websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/package-summary.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/package-summary.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/package-summary.html Mon Apr 17 17:22:07 2017 @@ -0,0 +1,136 @@ + + + + + +org.apache.zookeeper.admin (ZooKeeper 3.5.3-beta API) + + + + + + + +
+ + + + + +
+ + +
+

Package org.apache.zookeeper.admin

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    ZooKeeperAdmin +
    This is the main class for ZooKeeperAdmin client library.
    +
    +
  • +
+
+ +
+ + + + + +
+ + +

Copyright © 2017 The Apache Software Foundation

+ + Added: websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/package-tree.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/package-tree.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/admin/package-tree.html Mon Apr 17 17:22:07 2017 @@ -0,0 +1,133 @@ + + + + + +org.apache.zookeeper.admin Class Hierarchy (ZooKeeper 3.5.3-beta API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package org.apache.zookeeper.admin

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + +

Copyright © 2017 The Apache Software Foundation

+ +