gpt4 book ai didi

Scala 的 future inside yield

转载 作者:行者123 更新时间:2023-12-01 12:27:10 33 4
gpt4 key购买 nike

我想在数据库中找到一些对象(战斗)并根据它的存在返回这个特定对象或在数据库中创建一个新对象并返回新创建的对象。我实现了以下功能:

def findOrCreateFight(firstBoxer: BoxersRow, secondBoxer: BoxersRow, eventDate: java.sql.Date): Future[FightsRow] = {
for {
fight <- findByBoxersAndDate(firstBoxer, secondBoxer, eventDate)
} yield {
fight match {
case Some(f) => f
case None => createAndFindFight(firstBoxer, secondBoxer, eventDate)
}
}
}

findByBoxersAndDate 函数返回 Future[Option[FightsRow]] 对象,createAndFindFight 函数返回 Future[FightsRow]。现在编译器在 createAndFindFight 函数的一行中显示错误:

type mismatch; found : scala.concurrent.Future[models.Tables.FightsRow] required: models.Tables.FightsRow

好的,所以我需要在“无情况”下获得此 Future 的完整结果。我考虑过 onComplete 函数,但它返回 Unit,而不是所需的 FightsRow 对象。关于如何修复我的功能以获得最佳可扩展效果的任何建议? :)

最好的问候

最佳答案

好吧,那么您将从 createAndFindFight 中得到的将是另一个 Future。解决方案? flatMap 它,但是您必须将 Option 几乎“转换和解包”为适当的类型:

findByBoxersAndDate(firstBoxer, secondBoxer, eventDate)
.flatMap(_.map(Future.successful).getOrElse(createAndFindFight(firstBoxer, secondBoxer, eventDate)))

或者,直接匹配您的理解:

for {
potentialFight <- findByBoxersAndDate(firstBoxer, secondBoxer, eventDate)
actualFight <- potentialFight match {
case Some(f) => Future.successful(f)
case None => createAndFindFight(firstBoxer, secondBoxer, eventDate)
}
} yield actualFight

免责声明:上面的代码未经测试:)

关于Scala 的 future inside yield,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38202793/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com