PartialFunction隐式参数

时间:2018-11-27 13:00:18

标签: scala akka implicit partial-functions

我有一个简单的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))

1 个答案:

答案 0 :(得分:6)

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

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))