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 DB91B200B77 for ; Sat, 3 Sep 2016 22:36:25 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DA142160ACE; Sat, 3 Sep 2016 20:36:25 +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 642AE160AAC for ; Sat, 3 Sep 2016 22:36:23 +0200 (CEST) Received: (qmail 94136 invoked by uid 500); 3 Sep 2016 20:36:22 -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@ Delivered-To: mailing list commits@zookeeper.apache.org Received: (qmail 94125 invoked by uid 99); 3 Sep 2016 20:36:22 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Sep 2016 20:36:22 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id E0CAA181353 for ; Sat, 3 Sep 2016 20:36:21 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.574 X-Spam-Level: * X-Spam-Status: No, score=1.574 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, KAM_MANYCOMMENTS=1.2, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id kkbnlTbh44PP for ; Sat, 3 Sep 2016 20:35:47 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 0D69260D71 for ; Sat, 3 Sep 2016 20:35:47 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 39581E76B2 for ; Sat, 3 Sep 2016 20:35:45 +0000 (UTC) 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 2B36D3A0DCF for ; Sat, 3 Sep 2016 20:35:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r996601 [13/40] - in /websites/staging/zookeeper/trunk/content: ./ doc/r3.4.9/ doc/r3.4.9/api/ doc/r3.4.9/api/org/ doc/r3.4.9/api/org/apache/ doc/r3.4.9/api/org/apache/zookeeper/ doc/r3.4.9/api/org/apache/zookeeper/class-use/ doc/r3.4.9/api... Date: Sat, 03 Sep 2016 20:35:42 -0000 To: commits@zookeeper.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160903203545.2B36D3A0DCF@svn01-us-west.apache.org> archived-at: Sat, 03 Sep 2016 20:36:26 -0000 Added: websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/Watcher.Event.EventType.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/Watcher.Event.EventType.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/Watcher.Event.EventType.html Sat Sep 3 20:35:39 2016 @@ -0,0 +1,387 @@ + + + + + +Watcher.Event.EventType (ZooKeeper 3.4.9 API) + + + + + + + + + + + +
+
org.apache.zookeeper
+

Enum Watcher.Event.EventType

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

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static Watcher.Event.EventType[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (Watcher.Event.EventType c : Watcher.Event.EventType.values())
        +    System.out.println(c);
        +
        +
        Returns:
        an array containing the constants of this enum type, in the order they are declared
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static Watcher.Event.EventType valueOf(String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        Parameters:
        name - the name of the enum constant to be returned.
        +
        Returns:
        the enum constant with the specified name
        +
        Throws:
        +
        IllegalArgumentException - if this enum type has no constant with the specified name
        +
        NullPointerException - if the argument is null
        +
      • +
      + + + +
        +
      • +

        getIntValue

        +
        public int getIntValue()
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2016 The Apache Software Foundation

+ + Added: websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/Watcher.Event.KeeperState.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/Watcher.Event.KeeperState.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/Watcher.Event.KeeperState.html Sat Sep 3 20:35:39 2016 @@ -0,0 +1,470 @@ + + + + + +Watcher.Event.KeeperState (ZooKeeper 3.4.9 API) + + + + + + + + + + + +
+
org.apache.zookeeper
+

Enum Watcher.Event.KeeperState

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

      Enum Constant Detail

      + + + + + + + +
        +
      • +

        Disconnected

        +
        public static final Watcher.Event.KeeperState Disconnected
        +
        The client is in the disconnected state - it is not connected + to any server in the ensemble.
        +
      • +
      + + + + + + + +
        +
      • +

        SyncConnected

        +
        public static final Watcher.Event.KeeperState SyncConnected
        +
        The client is in the connected state - it is connected + to a server in the ensemble (one of the servers specified + in the host connection parameter during ZooKeeper client + creation).
        +
      • +
      + + + + + + + +
        +
      • +

        ConnectedReadOnly

        +
        public static final Watcher.Event.KeeperState ConnectedReadOnly
        +
        The client is connected to a read-only server, that is the + server which is not currently connected to the majority. + The only operations allowed after receiving this state is + read operations. + This state is generated for read-only clients only since + read/write clients aren't allowed to connect to r/o servers.
        +
      • +
      + + + +
        +
      • +

        SaslAuthenticated

        +
        public static final Watcher.Event.KeeperState SaslAuthenticated
        +
        SaslAuthenticated: used to notify clients that they are SASL-authenticated, + so that they can perform Zookeeper actions with their SASL-authorized permissions.
        +
      • +
      + + + +
        +
      • +

        Expired

        +
        public static final Watcher.Event.KeeperState Expired
        +
        The serving cluster has expired this session. The ZooKeeper + client connection (the session) is no longer valid. You must + create a new client connection (instantiate a new ZooKeeper + instance) if you with to access the ensemble.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static Watcher.Event.KeeperState[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (Watcher.Event.KeeperState c : Watcher.Event.KeeperState.values())
        +    System.out.println(c);
        +
        +
        Returns:
        an array containing the constants of this enum type, in the order they are declared
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static Watcher.Event.KeeperState valueOf(String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        Parameters:
        name - the name of the enum constant to be returned.
        +
        Returns:
        the enum constant with the specified name
        +
        Throws:
        +
        IllegalArgumentException - if this enum type has no constant with the specified name
        +
        NullPointerException - if the argument is null
        +
      • +
      + + + +
        +
      • +

        getIntValue

        +
        public int getIntValue()
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2016 The Apache Software Foundation

+ + Added: websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/Watcher.Event.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/Watcher.Event.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/Watcher.Event.html Sat Sep 3 20:35:39 2016 @@ -0,0 +1,197 @@ + + + + + +Watcher.Event (ZooKeeper 3.4.9 API) + + + + + + + + + + + +
+
org.apache.zookeeper
+

Interface Watcher.Event

+
+
+
+
    +
  • +
    +
    Enclosing interface:
    +
    Watcher
    +
    +
    +
    +
    public static interface Watcher.Event
    +
    This interface defines the possible states an Event may represent
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      + + + + + + + + + + + + + + +
      Nested Classes 
      Modifier and TypeInterface and Description
      static class Watcher.Event.EventType +
      Enumeration of types of events that may occur on the ZooKeeper
      +
      static class Watcher.Event.KeeperState +
      Enumeration of states the ZooKeeper may be at the event
      +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2016 The Apache Software Foundation

+ + Added: websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/Watcher.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/Watcher.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/Watcher.html Sat Sep 3 20:35:39 2016 @@ -0,0 +1,233 @@ + + + + + +Watcher (ZooKeeper 3.4.9 API) + + + + + + + + + + + +
+
org.apache.zookeeper
+

Interface Watcher

+
+
+
+
    +
  • +
    +
    +
    public interface Watcher
    +
    This interface specifies the public interface an event handler class must + implement. A ZooKeeper client will get various events from the ZooKeeper + server it connects to. An application using such a client handles these + events by registering a callback object with the client. The callback object + is expected to be an instance of a class that implements Watcher interface.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      + + + + + + + + + + +
      Nested Classes 
      Modifier and TypeInterface and Description
      static interface Watcher.Event +
      This interface defines the possible states an Event may represent
      +
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidprocess(WatchedEvent event) 
      +
    • +
    +
  • +
+
+
+ +
+
+ + + + + +

Copyright © 2016 The Apache Software Foundation

+ + Added: websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/ZooDefs.Ids.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/ZooDefs.Ids.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/ZooDefs.Ids.html Sat Sep 3 20:35:39 2016 @@ -0,0 +1,279 @@ + + + + + +ZooDefs.Ids (ZooKeeper 3.4.9 API) + + + + + + + + + + + +
+
org.apache.zookeeper
+

Interface ZooDefs.Ids

+
+
+
+
    +
  • +
    +
    Enclosing class:
    +
    ZooDefs
    +
    +
    +
    +
    public static interface ZooDefs.Ids
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        ANYONE_ID_UNSAFE

        +
        static final Id ANYONE_ID_UNSAFE
        +
        This Id represents anyone.
        +
      • +
      + + + +
        +
      • +

        AUTH_IDS

        +
        static final Id AUTH_IDS
        +
        This Id is only usable to set ACLs. It will get substituted with the + Id's the client authenticated with.
        +
      • +
      + + + +
        +
      • +

        OPEN_ACL_UNSAFE

        +
        static final ArrayList<ACL> OPEN_ACL_UNSAFE
        +
        This is a completely open ACL .
        +
      • +
      + + + +
        +
      • +

        CREATOR_ALL_ACL

        +
        static final ArrayList<ACL> CREATOR_ALL_ACL
        +
        This ACL gives the creators authentication id's all permissions.
        +
      • +
      + + + +
        +
      • +

        READ_ACL_UNSAFE

        +
        static final ArrayList<ACL> READ_ACL_UNSAFE
        +
        This ACL gives the world the ability to read.
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2016 The Apache Software Foundation

+ + Added: websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/ZooDefs.OpCode.html ============================================================================== --- websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/ZooDefs.OpCode.html (added) +++ websites/staging/zookeeper/trunk/content/doc/r3.4.9/api/org/apache/zookeeper/ZooDefs.OpCode.html Sat Sep 3 20:35:39 2016 @@ -0,0 +1,478 @@ + + + + + +ZooDefs.OpCode (ZooKeeper 3.4.9 API) + + + + + + + + + + + +
+
org.apache.zookeeper
+

Interface ZooDefs.OpCode

+
+
+
+
    +
  • +
    +
    Enclosing class:
    +
    ZooDefs
    +
    +
    +
    +
    public static interface ZooDefs.OpCode
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2016 The Apache Software Foundation

+ +