PartialFunction隐式参数



我有一个简单的PartialFunction

type ChildMatch = PartialFunction[Option[ActorRef], Unit]
def idMatch(msg: AnyRef, fail: AnyRef)(implicit ctx: ActorContext): ChildMatch = {
case Some(ref) => ref forward msg
case _ => ctx.sender() ! fail
}

但当我尝试使用这个时,编译器想要这样的声明:

...
implicit val ctx: ActorContext
val id: String = msg.id
idMatch(msg, fail)(ctx)(ctx.child(id))

正如你所看到的,它希望ctx作为第二个参数,而不是隐含的

我如何更改我的idMatch函数以这样使用它:

...
implicit val ctx: ActorContext
val id: String = msg.id
idMatch(msg, fail)(ctx.child(id))

编译器将始终假设第二个参数列表代表隐式参数列表。您必须以某种方式拆分对这两个函数的调用。以下是一些可能性:

idMatch(msg, fail).apply(ctx.child(id))
val matcher = idMatch(msg, fail)
matcher(ctx.child(id))
// Provides the implicit explicitly from the implicit scope
idMatch(msg, fail)(implicitly)(ctx.child(id))

相关内容

  • 没有找到相关文章

最新更新