如何以编程方式停止 RMI 服务器并通知所有客户端

发布于 2024-11-13 06:03:15 字数 126 浏览 1 评论 0原文

我开发了一个 RMI 应用程序,其中 RMI 服务器必须启动多次,也必须停止多次。

  • 如何在不关闭应用程序的情况下停止 RMI 服务器?
  • 如何向所有客户端发送服务器将要停止的通知?

I have developed an RMI application where the RMI server has to be started several times and also has to stop several times.

  • How can I stop the RMI server without closing the application?
  • How do I send notifications to all clients that the server is going to stop?

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

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

发布评论

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

评论(2

花开柳相依 2024-11-20 06:03:15

我不确定您所说的“RMI 服务器”是什么意思,即您无法以编程方式停止的 RMI 注册表。但您可以停止您的服务(绑定到 RMI 注册表)。您应该调用自定义方法来彻底关闭您的服务,然后将其从注册表中取消绑定

在关闭和解除绑定之前,您应该通知所有连接的客户端该服务将被关闭。该通知可以通过回调来完成。搜索RMI回调会给你很多例子和教程。

I'm not sure what you mean with the "RMI server", the RMI registry you cannot stop programmatically. But you can stop your service (bound to the RMI registry). You should invoke a custom method to cleanly shutdown your service and then unbindit from the registry.

Before this shutdown and unbinding you should inform all connected clients that the service will be shut down. This notification can be done by callback. Searching for RMI callback will give you a lot of examples and tutorials.

小情绪 2024-11-20 06:03:15

您实际上不需要发送通知。未导出的远程对象的客户端下次对其进行远程方法调用时将获得 NoSuchObjectEzception。他们只需要认清形势即可。

You don't really need to send a notification. Clients of an unexported remote object will get a NoSuchObjectEzception next time they do a remote method invocation on it. They just need to recognize the situation.

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