Update doc of pecl/zookeeper

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@343367 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Timandes White 2017-11-06 03:19:13 +00:00
parent 55697d5c8e
commit a6a00586b9
30 changed files with 863 additions and 2 deletions

View file

@ -0,0 +1,70 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 342956 $ -->
<refentry xml:id="function.zookeeper-dispatch" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>zookeeper_dispatch</refname>
<refpurpose>Calls callbacks for pending operations.</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>void</type><methodname>zookeeper_dispatch</methodname>
<void/>
</methodsynopsis>
<para>
The <function>zookeeper_dispatch</function> function calls the callbacks passwd by operations like <methodname>Zookeeper::get</methodname> or <methodname>Zookeeper::exists</methodname>.
</para>
<caution>
<para>
Since version 0.4.0, this function must be called to achieve asynchronous operations.
</para>
</caution>
</refsect1>
<refsect1 role="errors">
&reftitle.errors;
<para>
This method emits PHP warning when callback could not be invoked.
</para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><methodname>Zookeeper::addAuth</methodname></member>
<member><methodname>Zookeeper::connect</methodname></member>
<member><methodname>Zookeeper::__construct</methodname></member>
<member><methodname>Zookeeper::exists</methodname></member>
<member><methodname>Zookeeper::get</methodname></member>
<member><methodname>Zookeeper::getChildren</methodname></member>
<member><methodname>Zookeeper::setWatcher</methodname></member>
</simplelist>
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

View file

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 297028 $ -->
<reference xml:id="ref.zookeeper" xmlns="http://docbook.org/ns/docbook">
<title>ZooKeeper &Functions;</title>
&reference.zookeeper.entities.functions;
</reference>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

View file

@ -13,6 +13,7 @@
<function name='zookeeper::exists' from='PECL zookeeper &gt;= 0.1.0'/>
<function name='zookeeper::get' from='PECL zookeeper &gt;= 0.1.0'/>
<function name='zookeeper::getacl' from='PECL zookeeper &gt;= 0.1.0'/>
<function name='zookeeper::getchildren' from='PECL zookeeper &gt;= 0.1.0'/>
<function name='zookeeper::getclientid' from='PECL zookeeper &gt;= 0.1.0'/>
<function name='zookeeper::getrecvtimeout' from='PECL zookeeper &gt;= 0.1.0'/>
<function name='zookeeper::getstate' from='PECL zookeeper &gt;= 0.1.0'/>
@ -23,6 +24,16 @@
<function name='zookeeper::setdeterministicconnorder' from='PECL zookeeper &gt;= 0.1.0'/>
<function name='zookeeper::setlogstream' from='PECL zookeeper &gt;= 0.1.0'/>
<function name='zookeeper::setwatcher' from='PECL zookeeper &gt;= 0.1.0'/>
<function name='zookeeperexception' from='PECL zookeeper &gt;= 0.3.0'/>
<function name='zookeeperoperationtimeoutexception' from='PECL zookeeper &gt;= 0.3.0'/>
<function name='zookeeperconnectionexception' from='PECL zookeeper &gt;= 0.3.0'/>
<function name='zookeepermarshallingexception' from='PECL zookeeper &gt;= 0.3.0'/>
<function name='zookeeperauthenticationexception' from='PECL zookeeper &gt;= 0.3.0'/>
<function name='zookeepersessionexception' from='PECL zookeeper &gt;= 0.3.0'/>
<function name='zookeepernonodeexception' from='PECL zookeeper &gt;= 0.3.0'/>
<function name='zookeeper_dispatch' from='PECL zookeeper &gt;= 0.4.0'/>
</versions>
<!-- Keep this comment at the end of the file

View file

@ -6,8 +6,8 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns="http://docbook.org/ns/docbook">
<title>The ZooKeeper class</title>
<titleabbrev>ZooKeeper</titleabbrev>
<title>The Zookeeper class</title>
<titleabbrev>Zookeeper</titleabbrev>
<partintro>

View file

@ -67,6 +67,11 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or operation fails.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="examples">
@ -109,6 +114,7 @@ nodevalue
<member><methodname>Zookeeper::setAcl</methodname></member>
<member><methodname>Zookeeper::getAcl</methodname></member>
<member><link linkend="zookeeper.class.constants.states">ZooKeeper States</link></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -57,12 +57,18 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or could not init instance.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<simplelist>
<member><methodname>Zookeeper::__construct</methodname></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -56,12 +56,18 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or could not init instance.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<simplelist>
<member><methodname>Zookeeper::connect</methodname></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -72,6 +72,11 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or fail to create node.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="examples">
@ -114,7 +119,9 @@ else
&reftitle.seealso;
<simplelist>
<member><methodname>Zookeeper::delete</methodname></member>
<member><methodname>Zookeeper::getChildren</methodname></member>
<member><link linkend="zookeeper.class.constants.perms">ZooKeeper Permissions</link></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -51,6 +51,11 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or fail to delete node.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="examples">
@ -86,6 +91,8 @@ SUCCESS
&reftitle.seealso;
<simplelist>
<member><methodname>Zookeeper::create</methodname></member>
<member><methodname>Zookeeper::getChildren</methodname></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -51,6 +51,11 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or fail to check the existence of a node.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="examples">
@ -86,6 +91,7 @@ EXISTS
&reftitle.seealso;
<simplelist>
<member><methodname>Zookeeper::get</methodname></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -69,6 +69,11 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or fail to get value from node.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="examples">
@ -107,6 +112,7 @@ nodevalue
&reftitle.seealso;
<simplelist>
<member><methodname>Zookeeper::set</methodname></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -42,6 +42,11 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or fail to get ACL of a node.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="examples">
@ -98,6 +103,7 @@ array(1) {
<member><methodname>Zookeeper::create</methodname></member>
<member><methodname>Zookeeper::setAcl</methodname></member>
<member><link linkend="zookeeper.class.constants.perms">ZooKeeper Permissions</link></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 342988 $ -->
<refentry xml:id="zookeeper.getchildren" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>Zookeeper::getChildren</refname>
<refpurpose>Lists the children of a node synchronously.</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis role="oop">
<modifier>public</modifier>
<type>array</type><methodname>Zookeeper::getChildren</methodname>
<methodparam><type>string</type><parameter>path</parameter></methodparam>
<methodparam choice="opt"><type>callable</type><parameter>watcher_cb</parameter><initializer>null</initializer></methodparam>
</methodsynopsis>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<variablelist>
<varlistentry>
<term><parameter>path</parameter></term>
<listitem>
<para>
The name of the node. Expressed as a file name with slashes separating ancestors of the node.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>watcher_cb</parameter></term>
<listitem>
<para>
If nonzero, a watch will be set at the server to notify the client if the node changes.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Returns an array with children paths on success, and false on failure.
</para>
</refsect1>
<refsect1 role="errors">
&reftitle.errors;
<para>
This method emits PHP error/warning when parameters count or types are wrong or fail to list children of a node.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<example xml:id="zookeeper.getchildren.example.basic">
<title><methodname>Zookeeper::getChildren</methodname> example</title>
<para>
Lists children of a node.
</para>
<programlisting role="php">
<![CDATA[
<?php
$zookeeper = new Zookeeper('locahost:2181');
$path = '/zookeeper';
$r = $zookeeper->getchildren($path);
if ($r)
var_dump($r);
else
echo 'ERR';
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
array(1) {
[0]=>
string(6) "config"
}
]]>
</screen>
</example>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<simplelist>
<member><methodname>Zookeeper::create</methodname></member>
<member><methodname>Zookeeper::delete</methodname></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

View file

@ -28,6 +28,11 @@
<para>
This method emits PHP error/warning when it could not get client session id.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="seealso">
@ -37,6 +42,7 @@
<member><methodname>Zookeeper::connect</methodname></member>
<member><methodname>Zookeeper::getState</methodname></member>
<member><link linkend="zookeeper.class.constants.states">ZooKeeper States</link></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -28,6 +28,11 @@
<para>
This method emits PHP error/warning when operation fails.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="seealso">
@ -35,6 +40,7 @@
<simplelist>
<member><methodname>Zookeeper::__construct</methodname></member>
<member><methodname>Zookeeper::connect</methodname></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -28,6 +28,11 @@
<para>
This method emits PHP error/warning when it fails to get state of zookeeper connection.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="seealso">
@ -37,6 +42,7 @@
<member><methodname>Zookeeper::connect</methodname></member>
<member><methodname>Zookeeper::getClientId</methodname></member>
<member><link linkend="zookeeper.class.constants.states">ZooKeeper States</link></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -31,6 +31,11 @@
<para>
This method emits PHP error/warning when operation fails.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="seealso">
@ -40,6 +45,7 @@
<member><methodname>Zookeeper::connect</methodname></member>
<member><methodname>Zookeeper::getClientId</methodname></member>
<member><link linkend="zookeeper.class.constants.states">ZooKeeper States</link></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -69,6 +69,11 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or fail to save value to node.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="examples">
@ -106,6 +111,7 @@ SUCCESS
<simplelist>
<member><methodname>Zookeeper::create</methodname></member>
<member><methodname>Zookeeper::get</methodname></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -60,6 +60,11 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or fail to set ACL for a node.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="examples">
@ -116,6 +121,7 @@ array(1) {
<member><methodname>Zookeeper::create</methodname></member>
<member><methodname>Zookeeper::getAcl</methodname></member>
<member><link linkend="zookeeper.class.constants.perms">ZooKeeper Permissions</link></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -43,6 +43,11 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or fail to set debug level.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="examples">
@ -77,6 +82,7 @@ SUCCESS
&reftitle.seealso;
<simplelist>
<member><link linkend="zookeeper.class.constants.log-levels">ZooKeeper Log Levels</link></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -46,6 +46,11 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or operation fails.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="notes">
@ -65,6 +70,7 @@
<simplelist>
<member><methodname>Zookeeper::__construct</methodname></member>
<member><methodname>Zookeeper::connect</methodname></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -45,12 +45,18 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or operation fails.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<simplelist>
<member><methodname>Zookeeper::setDebugLevel</methodname></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -42,6 +42,11 @@
<para>
This method emits PHP error/warning when parameters count or types are wrong or fail to set watcher.
</para>
<caution>
<para>
Since version 0.3.0, this method emits <classname>ZookeeperException</classname> and it's derivatives.
</para>
</caution>
</refsect1>
<refsect1 role="seealso">
@ -49,6 +54,7 @@
<simplelist>
<member><methodname>Zookeeper::exists</methodname></member>
<member><methodname>Zookeeper::get</methodname></member>
<member><classname>ZookeeperException</classname></member>
</simplelist>
</refsect1>

View file

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 342988 $ -->
<phpdoc:classref xml:id="class.zookeeperauthenticationexception"
xmlns:phpdoc="http://php.net/ns/phpdoc"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns="http://docbook.org/ns/docbook">
<title>The ZookeeperAuthenticationException class</title>
<titleabbrev>ZookeeperAuthenticationException</titleabbrev>
<partintro>
<!-- {{{ Zookeeper intro -->
<section xml:id="zookeeperauthenticationexception.intro">
&reftitle.intro;
<para>
The ZooKeeper authentication exception handling class.
</para>
</section>
<!-- }}} -->
<section xml:id="zookeeperauthenticationexception.synopsis">
&reftitle.classsynopsis;
<!-- {{{ Synopsis -->
<classsynopsis>
<ooclass><classname>ZookeeperAuthenticationException</classname></ooclass>
<!-- {{{ Class synopsis -->
<classsynopsisinfo>
<ooclass>
<classname>ZookeeperAuthenticationException</classname>
</ooclass>
<ooclass>
<modifier>extends</modifier>
<classname>ZookeeperException</classname>
</ooclass>
</classsynopsisinfo>
<classsynopsisinfo role="comment">&InheritedProperties;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('exception.synopsis')/descendant::db:fieldsynopsis)" />
<classsynopsisinfo role="comment">&InheritedMethods;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.exception')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[1])" />
</classsynopsis>
<!-- }}} -->
</section>
</partintro>
</phpdoc:classref>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

View file

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 342988 $ -->
<phpdoc:classref xml:id="class.zookeeperconnectionexception"
xmlns:phpdoc="http://php.net/ns/phpdoc"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns="http://docbook.org/ns/docbook">
<title>The ZookeeperConnectionException class</title>
<titleabbrev>ZookeeperConnectionException</titleabbrev>
<partintro>
<!-- {{{ Zookeeper intro -->
<section xml:id="zookeeperconnectionexception.intro">
&reftitle.intro;
<para>
The ZooKeeper connection exception handling class.
</para>
</section>
<!-- }}} -->
<section xml:id="zookeeperconnectionexception.synopsis">
&reftitle.classsynopsis;
<!-- {{{ Synopsis -->
<classsynopsis>
<ooclass><classname>ZookeeperConnectionException</classname></ooclass>
<!-- {{{ Class synopsis -->
<classsynopsisinfo>
<ooclass>
<classname>ZookeeperConnectionException</classname>
</ooclass>
<ooclass>
<modifier>extends</modifier>
<classname>ZookeeperException</classname>
</ooclass>
</classsynopsisinfo>
<classsynopsisinfo role="comment">&InheritedProperties;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('exception.synopsis')/descendant::db:fieldsynopsis)" />
<classsynopsisinfo role="comment">&InheritedMethods;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.exception')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[1])" />
</classsynopsis>
<!-- }}} -->
</section>
</partintro>
</phpdoc:classref>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

View file

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 342988 $ -->
<phpdoc:classref xml:id="class.zookeeperexception"
xmlns:phpdoc="http://php.net/ns/phpdoc"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns="http://docbook.org/ns/docbook">
<title>The ZookeeperException class</title>
<titleabbrev>ZookeeperException</titleabbrev>
<partintro>
<!-- {{{ Zookeeper intro -->
<section xml:id="zookeeperexception.intro">
&reftitle.intro;
<para>
The ZooKeeper exception handling class.
</para>
</section>
<!-- }}} -->
<section xml:id="zookeeperexception.synopsis">
&reftitle.classsynopsis;
<!-- {{{ Synopsis -->
<classsynopsis>
<ooclass><classname>ZookeeperException</classname></ooclass>
<!-- {{{ Class synopsis -->
<classsynopsisinfo>
<ooclass>
<classname>ZookeeperException</classname>
</ooclass>
<ooclass>
<modifier>extends</modifier>
<classname>Exception</classname>
</ooclass>
</classsynopsisinfo>
<classsynopsisinfo role="comment">&InheritedProperties;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('exception.synopsis')/descendant::db:fieldsynopsis)" />
<classsynopsisinfo role="comment">&InheritedMethods;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.exception')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[1])" />
</classsynopsis>
<!-- }}} -->
</section>
</partintro>
</phpdoc:classref>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

View file

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 342988 $ -->
<phpdoc:classref xml:id="class.zookeepermarshallingexception"
xmlns:phpdoc="http://php.net/ns/phpdoc"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns="http://docbook.org/ns/docbook">
<title>The ZookeeperMarshallingException class</title>
<titleabbrev>ZookeeperMarshallingException</titleabbrev>
<partintro>
<!-- {{{ Zookeeper intro -->
<section xml:id="zookeepermarshallingexception.intro">
&reftitle.intro;
<para>
The ZooKeeper exception (while marshalling or unmarshalling data) handling class.
</para>
</section>
<!-- }}} -->
<section xml:id="zookeepermarshallingexception.synopsis">
&reftitle.classsynopsis;
<!-- {{{ Synopsis -->
<classsynopsis>
<ooclass><classname>ZookeeperMarshallingException</classname></ooclass>
<!-- {{{ Class synopsis -->
<classsynopsisinfo>
<ooclass>
<classname>ZookeeperMarshallingException</classname>
</ooclass>
<ooclass>
<modifier>extends</modifier>
<classname>ZookeeperException</classname>
</ooclass>
</classsynopsisinfo>
<classsynopsisinfo role="comment">&InheritedProperties;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('exception.synopsis')/descendant::db:fieldsynopsis)" />
<classsynopsisinfo role="comment">&InheritedMethods;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.exception')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[1])" />
</classsynopsis>
<!-- }}} -->
</section>
</partintro>
</phpdoc:classref>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

View file

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 342988 $ -->
<phpdoc:classref xml:id="class.zookeepernonodeexception"
xmlns:phpdoc="http://php.net/ns/phpdoc"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns="http://docbook.org/ns/docbook">
<title>The ZookeeperNoNodeException class</title>
<titleabbrev>ZookeeperNoNodeException</titleabbrev>
<partintro>
<!-- {{{ Zookeeper intro -->
<section xml:id="zookeepernonodeexception.intro">
&reftitle.intro;
<para>
The ZooKeeper exception (when node does not exist) handling class.
</para>
</section>
<!-- }}} -->
<section xml:id="zookeepernonodeexception.synopsis">
&reftitle.classsynopsis;
<!-- {{{ Synopsis -->
<classsynopsis>
<ooclass><classname>ZookeeperNoNodeException</classname></ooclass>
<!-- {{{ Class synopsis -->
<classsynopsisinfo>
<ooclass>
<classname>ZookeeperNoNodeException</classname>
</ooclass>
<ooclass>
<modifier>extends</modifier>
<classname>ZookeeperException</classname>
</ooclass>
</classsynopsisinfo>
<classsynopsisinfo role="comment">&InheritedProperties;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('exception.synopsis')/descendant::db:fieldsynopsis)" />
<classsynopsisinfo role="comment">&InheritedMethods;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.exception')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[1])" />
</classsynopsis>
<!-- }}} -->
</section>
</partintro>
</phpdoc:classref>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

View file

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 342988 $ -->
<phpdoc:classref xml:id="class.zookeeperoperationtimeoutexception"
xmlns:phpdoc="http://php.net/ns/phpdoc"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns="http://docbook.org/ns/docbook">
<title>The ZookeeperOperationTimeoutException class</title>
<titleabbrev>ZookeeperOperationTimeoutException</titleabbrev>
<partintro>
<!-- {{{ Zookeeper intro -->
<section xml:id="zookeeperoperationtimeoutexception.intro">
&reftitle.intro;
<para>
The ZooKeeper operation timeout exception handling class.
</para>
</section>
<!-- }}} -->
<section xml:id="zookeeperoperationtimeoutexception.synopsis">
&reftitle.classsynopsis;
<!-- {{{ Synopsis -->
<classsynopsis>
<ooclass><classname>ZookeeperOperationTimeoutException</classname></ooclass>
<!-- {{{ Class synopsis -->
<classsynopsisinfo>
<ooclass>
<classname>ZookeeperOperationTimeoutException</classname>
</ooclass>
<ooclass>
<modifier>extends</modifier>
<classname>ZookeeperException</classname>
</ooclass>
</classsynopsisinfo>
<classsynopsisinfo role="comment">&InheritedProperties;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('exception.synopsis')/descendant::db:fieldsynopsis)" />
<classsynopsisinfo role="comment">&InheritedMethods;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.exception')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[1])" />
</classsynopsis>
<!-- }}} -->
</section>
</partintro>
</phpdoc:classref>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

View file

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 342988 $ -->
<phpdoc:classref xml:id="class.zookeepersessionexception"
xmlns:phpdoc="http://php.net/ns/phpdoc"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns="http://docbook.org/ns/docbook">
<title>The ZookeeperSessionException class</title>
<titleabbrev>ZookeeperSessionException</titleabbrev>
<partintro>
<!-- {{{ Zookeeper intro -->
<section xml:id="zookeepersessionexception.intro">
&reftitle.intro;
<para>
The ZooKeeper session exception handling class.
</para>
</section>
<!-- }}} -->
<section xml:id="zookeepersessionexception.synopsis">
&reftitle.classsynopsis;
<!-- {{{ Synopsis -->
<classsynopsis>
<ooclass><classname>ZookeeperSessionException</classname></ooclass>
<!-- {{{ Class synopsis -->
<classsynopsisinfo>
<ooclass>
<classname>ZookeeperSessionException</classname>
</ooclass>
<ooclass>
<modifier>extends</modifier>
<classname>ZookeeperException</classname>
</ooclass>
</classsynopsisinfo>
<classsynopsisinfo role="comment">&InheritedProperties;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('exception.synopsis')/descendant::db:fieldsynopsis)" />
<classsynopsisinfo role="comment">&InheritedMethods;</classsynopsisinfo>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.exception')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[1])" />
</classsynopsis>
<!-- }}} -->
</section>
</partintro>
</phpdoc:classref>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->