添加了类名为“com.myshipments.mailbox”的自定义优先级邮箱。我的用例是为每个项目分别设置演员。每个项目的演员姓名属于ShippingItem- *项目,其中*可以是项目编号。
我想将优先邮箱分配给所有ShippingItems actor。所以在application.conf中将邮箱添加为:
shipping-item-mailbox {
mailbox-type = "com.myshipments.mailbox"
}
在创建使用
的Akka Actor期间system.actorOf(
Props.create(ShippingItemActor.class,itemId).withMailbox("shipping-item-mailbox"),"ShippingItem-"+ itemId);
问题:永远不会使用优先邮箱。尝试使用eclipse进行调试,但它从未进入实现类。