如何从akka actor获取消息队列的大小?
应用程序中有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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 UntypedActor 中,您可以执行以下操作:
getContext().getMailboxSize();
From within the UntypedActor you do:
getContext().getMailboxSize();