Scala Future.fold走了?

时间:2016-03-11 19:13:46

标签: scala

我在最近的书籍(2014+)中看到了使用Future.successfulFuture.reduceFuture.fold等方法的Scala代码示例...但我在scaladoc中找不到它们:

http://doc.akka.io/api/akka/2.0/akka/dispatch/Future.html

http://www.scala-lang.org/api/current/#scala.concurrent.Future

另外,scala.concurrent.Futureakka.dispatch.Future之间有什么区别?

1 个答案:

答案 0 :(得分:3)

您正在错误的地方搜索:这些方法属于Future的伴随对象,它们仍在那里: http://www.scala-lang.org/api/current/#scala.concurrent.Future$

很久以前akka.dispatch.Future被移入了Scala。请参阅here