作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一种情况,我想计算嵌套的 future 。下面是方案:
def firstFuture(factor: Int): Future[Int] = Future {
println("Running future 1")
Thread.sleep(3000)
5 * factor
}
def secondFuture(factor: Int) = Future {
println("Running future 2")
throw new Exception("fjdfj")
Thread.sleep(4000); 3 * factor
}
def thirdFuture = Future {
println("Running future 3")
Thread.sleep(5000)
throw new Exception("mai fat raha hu")
}
def method = {
(Future(5).map { factor =>
firstFuture(factor).recover { case ex: Exception => throw new Exception("First future failed") }
secondFuture(factor).recover { case ex: Exception => throw new Exception("Second future failed") }
thirdFuture.recover { case ex: Exception => throw new Exception("Third future failed") }
}).flatMap(identity).recover { case ex: Exception =>
println("Inside recover")
println(ex.getMessage)
}
}
Await.result(method, 20 seconds)
最佳答案
之所以只得到第三 future 的错误,是因为整个块的值是该块的最后一个表达式,所以
Future(5).map { factor =>
firstFuture(factor) // this executes but the result is discarded
secondFuture(factor) // this executes but the result is discarded
thirdFuture // the last expression becomes the value of the whole block
}
Future(41).map { v =>
Future(throw new RuntimeException("boom")) // the exception is simply swallowed
v + 1
}
Future(42)
内抛出异常,结果仍是
Future
。了解这一点很重要,因为否则我们可能会在系统中引入
静默失败。
Future.sequence
的组合
for {
factor <- Future(5)
results <- Future.sequence(List(firstFuture(factor), secondFuture(factor), thirdFuture))
} yield results
sequence
的三个Future将同时执行,如果其中任何一个失败,
sequence
将返回失败的Future。
关于scala - 如何在Scala中跟踪异常情况和嵌套 future 的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61478147/
我是一名优秀的程序员,十分优秀!