Zend_Queue-Stomp.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <!-- EN-Revision: 17240 -->
  4. <sect1 id="zend.queue.stomp">
  5. <title>Stomp</title>
  6. <para>
  7. <classname>Zend_Queue_Stomp</classname>は、
  8. <ulink url="http://stomp.codehaus.org/">Stomp</ulink>互換の一部のサーバと通信するために、
  9. 基本的なクライアントを提供します。
  10. 一部のサーバ(例えばApache ActiveMQとRabbitMQ)では、
  11. <acronym>HTTP</acronym>や<acronym>XMPP</acronym>のような
  12. 他のメソッドで情報を交換できます。
  13. </para>
  14. <para>
  15. Stompプロトコルは、どんな<ulink url="http://java.sun.com/products/jms/">Javaメッセージサービス(JMS)</ulink>
  16. でもサポートするStompConnectを提供します。
  17. Stompは、
  18. <ulink url="http://activemq.apache.org/">Apache ActiveMQ</ulink>や
  19. <ulink url="http://www.rabbitmq.com/">RabbitMQ</ulink>、
  20. <ulink url="http://stompserver.rubyforge.org/">stompserver</ulink>、そして
  21. <ulink url="http://www.germane-software.com/software/Java/Gozirra/">Gozirra</ulink>で
  22. サポートされます。
  23. </para>
  24. <sect2 id="zend.queue.adapters-configuration.stomp">
  25. <title>Stomp - サポートするクラス</title>
  26. <itemizedlist>
  27. <listitem>
  28. <para>
  29. <classname>Zend_Queue_Stomp_Frame</classname>。
  30. このクラスは、Stompフレームを操作するための基底関数を提供します。
  31. </para>
  32. </listitem>
  33. <listitem>
  34. <para>
  35. <classname>Zend_Queue_Stomp_Client</classname>.
  36. このクラスは
  37. <!-- TODO -->
  38. provides 基本関数 to
  39. <methodname>send()</methodname> and
  40. <methodname>receive()</methodname>
  41. <classname>Zend_Queue_Stomp_Frame</classname>s to and from a
  42. Stomp互換サーバ
  43. </para>
  44. </listitem>
  45. </itemizedlist>
  46. </sect2>
  47. </sect1>