2

在 Scala 中是否有另一种实现成功和失败闭包的模式?

这种约定与 node.js 库通常所做的类似,没有任何问题,但我只是想知道在 Scala 中是否有另一种方法可以做到这一点。

例如:

def performAsyncAction(n: BigInt,
                success: (BigInt) => Unit,
                failure: FunctionTypes.Failure): Unit = {

然后调用函数

performAsyncAction(10,
         {(x: BigInt) => 
              /* Code... */
         }, 
         {(t: Throwable) => 
              e.printStackTrace()
         })

谢谢

4

1 回答 1

8

听起来你想要一个Future. 请参阅此处的 AKKA 实施。

AFuture是一种函数式构造,可让您指定要异步执行的代码块,然后您可以在完成后获取结果:

import akka.actor.ActorSystem
import akka.dispatch.Await
import akka.dispatch.Future
import akka.util.duration._

implicit val system = ActorSystem("FutureSystem")

val future = Future {
  1 + 1
}
val result = Await.result(future, 1 second)
println(result) //  prints "2"

您可以使用该方法指定故障行为onFailure(还有onCompleteand onSuccess):

val future = Future {
  throw new RuntimeException("error")
}.onFailure {
  case e: RuntimeException => println("Oops!  We failed with " + e)
}
//  will print "Oops!  We failed with java.lang.RuntimeException: error"

但最好的部分是Futures 是 Monad,因此您可以使用类似的东西创建异步操作的管道mapflatMap

val f1 = Future { "hello" }
val f2 = f1.map(_ + " world")
val f3 = f2.map(_.length)
val result = Await.result(f3, 1 second)
println(result) //  prints "11"

或者在理解中使用它们:

val f1 = Future { "hello" }
val f2 = Future { " " }
val f3 = Future { "world" }
val f4 =
  for (
    a <- f1;
    b <- f2;
    c <- f3
  ) yield {
    a + b + c
  }
val result = Await.result(f4, 1 second)
println(result) //  prints "hello world"
于 2012-08-07T05:15:21.627 回答