0

我有一个带有接收方法的演员:

def receive: Actor.Receive = {
    case Tick =>
        val child = context.system.actorOf(...) // create actor
        context.watch(child)
        child ! something

    case AskRunningJobs =>
      log.info(s"My children: ${context.children.toList.length}")
      log.info(s"My children: ${context.children.toList.map(_.path.toSerializationFormat).mkString(" ||| ")}")
      sender ! RunningJobs(context.children.toList.length)

    case unknown =>
      log.warning(s"unknown message: $unknown")
  }

我有详细的日志输出,我可以清楚地看到孩子们已经创建并且正在运行。但

context.children.toList.length

始终为零。为什么?我正在使用 TestKit 运行我的演员。

4

1 回答 1

2

通过这种方式创造孩子

val child = context.system.actorOf(...) // create actor

您使创建的演员成为监护人的孩子(即您失去了上下文)。只有您的顶级演员应该以这种方式创建。

要使它们成为您的演员的孩子,您需要使用

val child = context.actorOf(...) // create actor

反而。有关演员创建的更多信息可以在文档中找到。

于 2017-04-19T22:41:13.717 回答