Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions reference/zmq/book.xml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- State: experimental -->

<book xml:id="book.zmq" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<?phpdoc extension-membership="pecl" ?>
<title>ZMQ</title>
<titleabbrev>0MQ messaging</titleabbrev>

<preface xml:id="intro.zmq">
&reftitle.intro;
<para>
&warn.experimental;
"ØMQ is a software library that lets you quickly design and implement a fast message-based application." --0MQ Website
</para>
<para>
For more information about 0MQ, see <link xlink:href="&url.zeromq;">&url.zeromq;</link>.
</para>
</preface>

&reference.zmq.setup;

&reference.zmq.zmq;
&reference.zmq.zmqcontext;
&reference.zmq.zmqsocket;
&reference.zmq.zmqpoll;
&reference.zmq.zmqdevice;

</book>

<!-- 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
-->
46 changes: 46 additions & 0 deletions reference/zmq/setup.xml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->

<chapter xml:id="zmq.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup;

<section xml:id="zmq.requirements">
&reftitle.required;
<para>
ZMQ extension requires 0MQ version 2.0.7 or higher. 0MQ can be acquired from <link xlink:href="&url.zeromq;area:download">&url.zeromq;area:download</link>.
</para>
</section>

<section xml:id="zmq.installation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.install;

<para>
&pecl.info.dead;
<link xlink:href="&url.pecl.package;zmq">&url.pecl.package;zmq</link>
</para>
<para>
&pecl.windows.download.avail;
</para>
</section>
</chapter>

<!-- 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
-->
117 changes: 117 additions & 0 deletions reference/zmq/versions.xml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!--
Do NOT translate this file
-->

<versions>
<!-- Methods -->
<function name='zmq' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmq::__construct' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontext' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontext::__construct' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontext::getsocket' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontext::ispersistent' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontext::getopt' from='PECL zmq &gt;= 1.0.4'/>
<function name='zmqcontext::setopt' from='PECL zmq &gt;= 1.0.4'/>
<function name='zmqsocket' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocket::__construct' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocket::send' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocket::sendmulti' from='PECL zmq &gt;= 0.8.0'/>
<function name='zmqsocket::recv' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocket::recvmulti' from='PECL zmq &gt;= 0.8.0'/>
<function name='zmqsocket::bind' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocket::connect' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocket::setsockopt' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocket::getendpoints' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocket::getsockettype' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocket::ispersistent' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocket::getpersistentid' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocket::getsockopt' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocket::unbind' from='PECL zmq &gt;= 1.0.4'/>
<function name='zmqsocket::disconnect' from='PECL zmq &gt;= 1.0.4'/>
<function name='zmqpoll' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpoll::add' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpoll::poll' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpoll::getlasterrors' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpoll::remove' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpoll::count' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpoll::clear' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdevice' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdevice::__construct' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqexception' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqexception::__clone' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqexception::__construct' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqexception::getmessage' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqexception::getcode' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqexception::getfile' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqexception::getline' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqexception::gettrace' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqexception::getprevious' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqexception::gettraceasstring' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqexception::__tostring' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontextexception' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontextexception::__clone' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontextexception::__construct' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontextexception::getmessage' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontextexception::getcode' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontextexception::getfile' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontextexception::getline' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontextexception::gettrace' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontextexception::getprevious' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontextexception::gettraceasstring' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqcontextexception::__tostring' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocketexception::__clone' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocketexception::__construct' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocketexception::getmessage' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocketexception::getcode' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocketexception::getfile' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocketexception::getline' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocketexception::gettrace' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocketexception::getprevious' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocketexception::gettraceasstring' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqsocketexception::__tostring' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpollexception' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpollexception::__clone' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpollexception::__construct' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpollexception::getmessage' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpollexception::getcode' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpollexception::getfile' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpollexception::getline' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpollexception::gettrace' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpollexception::getprevious' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpollexception::gettraceasstring' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqpollexception::__tostring' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdeviceexception' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdeviceexception::__clone' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdeviceexception::__construct' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdeviceexception::getmessage' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdeviceexception::getcode' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdeviceexception::getfile' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdeviceexception::getline' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdeviceexception::gettrace' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdeviceexception::getprevious' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdeviceexception::gettraceasstring' from='PECL zmq &gt;= 0.5.0'/>
<function name='zmqdeviceexception::__tostring' from='PECL zmq &gt;= 0.5.0'/>
</versions>

<!-- 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
-->
Loading