[MANUAL] English:
[zend.git] / documentation / manual / en / module_specs / Zend_Queue-Stomp.xml
blobbb7ba0fcd035ec2e3a7eed07707f8f23d9c48bc4
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Reviewed: no -->
3 <sect1 id="zend.queue.stomp">
4     <title>Stomp</title>
6     <para>
7         <classname>Zend_Queue_Stomp</classname> provides a basic client to
8         communicate with <ulink url="http://stomp.codehaus.org/">Stomp</ulink>
9         compatible servers. Some servers, such as Apache ActiveMQ and RabbitMQ, will
10         allow you to communicate by other methods, such as <acronym>HTTP</acronym>,
11         and <acronym>XMPP</acronym>.
12     </para>
14     <para>
15         The Stomp protocol provides <ulink
16             url="http://stomp.codehaus.org/StompConnect">StompConnect</ulink>
17         which supports any <ulink url="http://java.sun.com/products/jms/"> Java
18             Message Service (JMS)</ulink> provider.
19         Stomp is supported by
20         <ulink url="http://activemq.apache.org/">Apache ActiveMQ</ulink>,
21         <ulink url="http://www.rabbitmq.com/">RabbitMQ</ulink>,
22         <ulink url="http://stompserver.rubyforge.org/">stompserver</ulink>, and
23         <ulink url="http://www.germane-software.com/software/Java/Gozirra/">Gozirra</ulink>.
24     </para>
26     <sect2 id="zend.queue.adapters-configuration.stomp">
27         <title>Stomp - Supporting classes</title>
29         <itemizedlist>
30             <listitem>
31                 <para>
32                     <classname>Zend_Queue_Stomp_Frame</classname>. This class
33                     provides the basic functions for manipulating a Stomp Frame.
34                 </para>
35             </listitem>
37             <listitem>
38                 <para>
39                     <classname>Zend_Queue_Stomp_Client</classname>. This class
40                     provides the basic functions to
41                     <methodname>send()</methodname> and
42                     <methodname>receive()</methodname>
43                     <classname>Zend_Queue_Stomp_Frame</classname>s to and from a
44                     Stomp compatible server.
45                 </para>
46             </listitem>
47         </itemizedlist>
48     </sect2>
49 </sect1>