我试图在
Scala中链接Futures,但它给了我错误的返回类型.
def getoneRecordByModel(x:DirectFlight): Future[Option[FlightByDetailModel]] = { select.allowFiltering().where(_.from eqs x.from).and(_.to eqs x.to).and(_.departure eqs x.departure).and(_.arrival eqs x.arrival).and(_.carrier eqs x.airline).and(_.code eqs x.flightCode).one() } def getRecordByUUID(x:FlightByDetailModel): Future[Option[FlightByUUIDModel]] = { select.allowFiltering().where(_.uuid eqs x.uuid).one() } def getUUIDRecordByModel(x:DirectFlight): Future[Option[FlightByUUIDModel]] = { getoneRecordByModel(x) andThen { case Success(Some(flight)) => getRecordByUUID(flight) case Success(x) => Success(x) case Failure(x) => Failure(x) } }
但是现在我得到了getUUIDRecordByModel返回类型为Future [Option [FlightByDetailModel]]的错误
如何正确链接它们?
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。