fixed instamtiation error of InboxActor in actor.dsl.Inbox
This commit is contained in:
parent
b0c5f231ed
commit
bf57d6c55b
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ trait Inbox { this: ActorDSL.type ⇒
|
|||
val DSLInboxQueueSize = config.getInt("inbox-size")
|
||||
|
||||
val inboxNr = new AtomicInteger
|
||||
val inboxProps = Props(classOf[InboxActor], DSLInboxQueueSize)
|
||||
val inboxProps = Props(classOf[InboxActor], ActorDSL, DSLInboxQueueSize)
|
||||
|
||||
def newReceiver: ActorRef = mkChild(inboxProps, "inbox-" + inboxNr.incrementAndGet)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue