rmi 回调陷阱?

发布于 2024-09-25 13:14:39 字数 278 浏览 1 评论 0原文

在RMI中进行回调时需要担心什么?我只需要一个简单的客户端通知机制来避免过度轮询。

我找到了一个 在线示例,它看起来非常简单,客户端只需实现一个扩展 Remote 的接口(就像服务器一样)并将其传递给服务器,然后服务器可以回调其方法。我猜测远程回调可以在任何线程上发生,所以我必须假设它将与我的客户端应用程序的正常线程异步。还有什么?

What do I need to worry about when doing callbacks in RMI? I just need a simple client notification mechanism to avoid excessive polling.

I found an online example and it looks pretty straightforward, the client just implements an interface that extends Remote (like the server does) and passes it to the server, which can then call back its methods. I'm guessing the remote callback can occur on any thread, so I have to assume it will be asynchronous to my client application's normal threads. What else is there?

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

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

发布评论

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

评论(1

昔日梦未散 2024-10-02 13:14:39

有两件事。

  1. RMI 回调几乎肯定无法通过防火墙

  2. RMI 回调在与原始客户端对服务器的调用不同的线程上执行。如果不考虑这一点,您可能会遇到意外的同步死锁。

Two things.

  1. RMI callbacks almost certainly won't work through firewalls

  2. RMI callbacks execute on a different thread from the original client call to the server. You can get unexpected synchronization deadlocks if you don't take that into account.

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