我在最近的书籍(2014+)中看到了使用Future.successful
,Future.reduce
,Future.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.Future
和akka.dispatch.Future
之间有什么区别?
答案 0 :(得分:3)
您正在错误的地方搜索:这些方法属于Future
的伴随对象,它们仍在那里:
http://www.scala-lang.org/api/current/#scala.concurrent.Future$
很久以前akka.dispatch.Future
被移入了Scala。请参阅here。