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 E71C8200C6B for ; Mon, 17 Apr 2017 19:22:17 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E5C29160BB5; Mon, 17 Apr 2017 17:22:17 +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 9BD3C160B92 for ; Mon, 17 Apr 2017 19:22:15 +0200 (CEST) Received: (qmail 55657 invoked by uid 500); 17 Apr 2017 17:22:13 -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 55316 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 676943A51F4 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 [14/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.676943A51F4@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/KeeperException.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/KeeperException.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.5.3-beta/api/org/apache/zookeeper/KeeperException.html Mon Apr 17 17:22:07 2017 @@ -0,0 +1,621 @@ + + + + + +KeeperException (ZooKeeper 3.5.3-beta API) + + + + + + + + + + + +
+
org.apache.zookeeper
+

Class KeeperException

+
+
+ + +
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        create

        +
        public static KeeperException create(KeeperException.Code code,
        +                     String path)
        +
        All non-specific keeper exceptions should be constructed via + this factory method in order to guarantee consistency in error + codes and such. If you know the error code, then you should + construct the special purpose exception directly. That will + allow you to have the most specific possible declarations of + what exceptions might actually be thrown.
        +
        Parameters:
        code - The error code.
        path - The ZooKeeper path being operated on.
        +
        Returns:
        The specialized exception, presumably to be thrown by + the caller.
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        create

        +
        public static KeeperException create(KeeperException.Code code)
        +
        All non-specific keeper exceptions should be constructed via + this factory method in order to guarantee consistency in error + codes and such. If you know the error code, then you should + construct the special purpose exception directly. That will + allow you to have the most specific possible declarations of + what exceptions might actually be thrown.
        +
        Parameters:
        code - The error code of your new exception. This will + also determine the specific type of the exception that is + returned.
        +
        Returns:
        The specialized exception, presumably to be thrown by + the caller.
        +
      • +
      + + + +
        +
      • +

        setCode

        +
        @Deprecated
        +public void setCode(int code)
        +
        Deprecated. deprecated in 3.1.0, exceptions should be immutable, this + method should not be used
        +
        Set the code for this exception
        +
        Parameters:
        code - error code
        +
      • +
      + + + +
        +
      • +

        getCode

        +
        @Deprecated
        +public int getCode()
        +
        Deprecated. deprecated in 3.1.0, use code() instead
        +
        Read the error code for this exception
        +
        Returns:
        the error code for this exception
        +
      • +
      + + + +
        +
      • +

        code

        +
        public KeeperException.Code code()
        +
        Read the error Code for this exception
        +
        Returns:
        the error Code for this exception
        +
      • +
      + + + +
        +
      • +

        getPath

        +
        public String getPath()
        +
        Read the path for this exception
        +
        Returns:
        the path associated with this error, null if none
        +
      • +
      + + + + + + + +
        +
      • +

        getResults

        +
        public List<org.apache.zookeeper.OpResult> getResults()
        +
        If this exception was thrown by a multi-request then the (partial) results + and error codes can be retrieved using this getter.
        +
        Returns:
        A copy of the list of results from the operations in the multi-request.
        Since:
        +
        3.4.0
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 The Apache Software Foundation

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

Class ServerAdminClient

+
+
+ +
+
    +
  • +
    +
    +
    public class ServerAdminClient
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ServerAdminClient

        +
        public ServerAdminClient()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        ruok

        +
        public static void ruok(String host,
        +        int port)
        +
      • +
      + + + +
        +
      • +

        dump

        +
        public static void dump(String host,
        +        int port)
        +
      • +
      + + + +
        +
      • +

        stat

        +
        public static void stat(String host,
        +        int port)
        +
      • +
      + + + +
        +
      • +

        kill

        +
        public static void kill(String host,
        +        int port)
        +
      • +
      + + + +
        +
      • +

        setTraceMask

        +
        public static void setTraceMask(String host,
        +                int port,
        +                String traceMaskStr)
        +
      • +
      + + + +
        +
      • +

        getTraceMask

        +
        public static void getTraceMask(String host,
        +                int port)
        +
      • +
      + + + +
        +
      • +

        main

        +
        public static void main(String[] args)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 The Apache Software Foundation

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

Class WatchedEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class WatchedEvent
    +extends Object
    +
    A WatchedEvent represents a change on the ZooKeeper that a Watcher + is able to respond to. The WatchedEvent includes exactly what happened, + the current state of the ZooKeeper, and the path of the znode that + was involved in the event.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + + + + + +
        +
      • +

        WatchedEvent

        +
        public WatchedEvent(org.apache.zookeeper.proto.WatcherEvent eventMessage)
        +
        Convert a WatcherEvent sent over the wire into a full-fledged WatcherEvent
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2017 The Apache Software Foundation

+ +