首先,我尝试更改default-dispatcher的邮箱要求,但我不断收到异常:
Mailbox Mapping for [CustomMailbox.PmfMailboxType] not configured
这是配置:
akka.actor.default-dispatcher {
mailbox-requirement = "CustomMailbox.PmfMailboxType, CustomMailbox"
}
然后,我尝试配置将使用此邮箱的自定义调度程序,但是当我尝试对其进行设置时:
custom-dispatcher {
type = "Dispatcher"
executor = "default-executor"
default-executor {}
current-context-executor{}
mailbox-requirement = "CustomMailbox.PmfMailboxType, CustomMailbox"
}
akka.actor.default.dispatcher = "custom-dispatcher"
似乎没有配置调度程序(注意:如果可能的话,我想避免以编程方式设置调度程序)。
是否可以完全更改DeadLetters actor或在system/temp/
下创建的任何其他actor所使用的邮箱?