Zend_Queue-Stomp.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <!-- EN-Revision: 24249 -->
  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. このクラスは、<classname>Zend_Queue_Stomp_Frame</classname> を
  37. Stomp 互換サーバに <methodname>send()</methodname> したり、
  38. Stomp 互換サーバから、<methodname>receive()</methodname> する基本関数を提供します。
  39. </para>
  40. </listitem>
  41. </itemizedlist>
  42. </sect2>
  43. </sect1>