如何从akka actor获取消息队列的大小?

发布于 2024-10-23 17:49:34 字数 173 浏览 0 评论 0原文

应用程序中有Akka(Java API)参与者(UntypeActor)和消息。 根据API合同,如果几条消息发送给同一个参与者,它们将被一一排队和处理。

我想根据队列大小处理参与者中的消息。基本上:在 Actor.onReceive() 中处理当前消息时,是否至少还有一条消息在排队? Akka 的归档方式是什么?

There are Akka (Java API) actors (UntypeActor) and messages in the application.
According to API contract in case a few messages are addressed to the same actor, they are queued and processed with one-by-one.

I'd like to handle messages in the actor depending on queue size. Basically: is there at least one more message queued at the moment current one is handled in Actor.onReceive()? What is the Akka way to archive this?

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

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

发布评论

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

评论(1

尬尬 2024-10-30 17:49:34

在 UntypedActor 中,您可以执行以下操作:

getContext().getMailboxSize();

From within the UntypedActor you do:

getContext().getMailboxSize();

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