如何使用JMS消息减少生产者(Java)和消费者(Flex)之间的时间请求?

时间:2010-07-12 13:07:07

标签: flex jms message activemq blazeds

我使用JMS消息目标实现了带有spring blazeDs消息服务的应用程序客户端服务器。

这个想法是使用activeMQ在Java发送消息中声明的生成器,并且在Flex中声明的消费者接收它们。

我已将AMFChannel配置为轮询间隔为0,但我已经看到消费者在Flex中订阅目标时,时间请求最长可达3秒。

我的services-config中的代码是:

<services>
    <default-channels>
        <channel ref="my-amf"/>
    </default-channels>
</services>
<channels>
    <channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
        <endpoint url="http://{server.name}:{server.port}/{context.root}/spring/messagebroker/amf"
                  class="flex.messaging.endpoints.AMFEndpoint"/>
        <properties>
            <polling-enabled>true</polling-enabled>
            <polling-interval-seconds>0</polling-interval-seconds>
        </properties>
    </channel-definition>
</channels>

我的application-config代码部分是:

<!-- exposes myService as BlazeDS destination -->
<flex:remoting-destination ref="producer" />
<flex:jms-message-destination id="chatIn" jms-destination="parametros.modem03.fecRate" />       



<amq:broker useJmx="false" persistent="false">
    <amq:transportConnectors>
        <amq:transportConnector uri="vm://localhost" />
    </amq:transportConnectors>
</amq:broker>

 <!--  ActiveMQ destinations to use  -->
<amq:topic id="parametros.modem01.fecRate"  physicalName="parametros.modem01.fecRate"/>
<amq:topic id="parametros.modem02.fecRate"  physicalName="parametros.modem01.fecRate2"/>
<amq:topic id="parametros.modem03.fecRate"  physicalName="parametros.modem01.fecRate3"/>
<amq:topic id="parametros"  physicalName="parametros.*.*"/>




 <!-- JMS ConnectionFactory to use, configuring the embedded broker using XML -->
 <amq:connectionFactory id="connectionFactory" brokerURL="vm://localhost"/>

我需要帮助

如何将这段时间缩短到最大值?

1 个答案:

答案 0 :(得分:0)