这是函数:
def execute[T, U, F[_]](t: T)(implicit
executor: Executor[F],
functor: Functor[F],
handler: Handler[T, U],
manifest: Manifest[U]): F[Response[U]] = {(do something)}
我有一个类ElasticSearchRepositoryWrapper
它继承自某个地方(我找不到从哪里(handler
变量。 我有一个类的实例repo = ElasticSearchRepositoryWrapper(client, config, configName)
我想这样做:
class SomeService(val config: Config,
val configName: String = "products",
val client: ElasticClient)
(implicit val ec: ExecutionContext)
{
repo = ElasticSearchRepositoryWrapper(client, config, configName)
repo.client.execute {
repo.delete(something)
}
}
但它说,No implicits found for parameter handler: Handler[..., ...]
execute
函数
那么,我怎样才能将handler
从repo
传递到它呢?
注意:如果类SomeService
继承自ElasticSearchRepositoryWrapper
,它会找到它。
我不确定execute
的第一个参数是什么。看起来它想要一些t
,但你正在通过一个块(不是说它一定是错误的,但有点奇怪(。但是,假设这确实是您想要的,并且repo.handler
可以访问,您可以像这样传递它:
repo.client.execute(repo.delete(something))(ec, implicitly, repo.handler, implicitly)