Google Reader 类 Web 应用程序 (SmartGWT) (GWT)

发布于 2024-10-03 15:32:12 字数 165 浏览 4 评论 0原文

我需要编写像 google reader 这样的网络应用程序(使用 SmartGWT)。

我将显示实时更新的日志文件,而不是 RSS feed。我想我可以启动一个计时器并询问服务器每分钟是否有新日志。这是正确的方法吗?

我必须使用 WebSocket 吗?它们适用于所有现代浏览器吗?

I need to write web aplication like google reader (using SmartGWT).

Instead of RSS feads I will show log files which updates in realtime. I think I can start a timer and ask server are there any new logs every minute. Is this the right way to do this?

Do I have to use WebSockets? Are they working in all the modern browsers?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

街道布景 2024-10-10 15:32:12

我想我可以启动一个计时器并询问服务器每分钟是否有新日志。这是正确的方法吗?

在不使用服务器推送的情况下,这是可行的方法。您通常希望使用上次收到的日志条目的时间戳来查询服务器。这样你就可以只发送自上次拉取以来的差异。

有关 GWT 和推送的更多信息,请参阅此处(这实际上是拉)。或者查看 stream-hub (以及拉皮条的 股票观察器示例)如果您想进行服务器推送。

I think I can start a timer and ask server are there any new logs every minute. Is this the right way to do this?

Without using server push this is the way to go. You typically want to query the server with the timestamp of the last received log entry. This way can you only send the diff since the last pull.

See here for some more information on GWT and push (which is actually pull). Or check out stream-hub (and the pimped stock watcher example) if you wanna go for server push.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文