Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
应用程序中有 Akka (Java API) 演员 (UntypeActor) 和消息。根据 API 合同,如果有几条消息发送给同一个参与者,它们会被排队并一个接一个地处理。
我想根据队列大小处理演员中的消息。基本上:在 Actor.onReceive() 中处理当前一条消息时,是否至少还有一条消息在排队?Akka 的存档方式是什么?
在 UntypedActor 中,您可以:
getContext().getMailboxSize();