gpt4 book ai didi

long-polling - Atmosphere 中的长轮询间隔

转载 作者:行者123 更新时间:2023-12-04 04:12:39 25 4
gpt4 key购买 nike

Atmosphere 框架中的长轮询间隔约为 60 秒。即使在 AtmosphereRequest 中设置 pollingInterval 属性后,请求也会在 60 秒后发送到服务器。如何在请求中设置 pollingInterval?这是 javascript 中的请求:要求 : { url : document.location.toString() + 'echo',
传输:'websocket', fallbackTransport : '长轮询', trackMessageLength : 是的, 重新连接:是的, 轮询间隔:10,
maxReconnectOnClose: Number.MAX_VALUE,
重新连接间隔:10, 连接超时:-1

最佳答案

在服务器端,在 web.xml 中,您可以设置这两个 init-param 条目:

 <init-param>
<param-name>org.atmosphere.cpr.AtmosphereInterceptor</param-name>
<param-value>org.atmosphere.interceptor.HeartbeatInterceptor</param-value>
</init-param>
<init-param>
<param-name>org.atmosphere.interceptor.HeartbeatInterceptor.heartbeatFrequencyInSeconds</param-name>
<!-- value in seconds, default 60 -->
<param-value>10</param-value>
</init-param>

更多信息:http://atmosphere.github.io/atmosphere/apidocs/org/atmosphere/interceptor/HeartbeatInterceptor.html

关于long-polling - Atmosphere 中的长轮询间隔,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28021797/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com