- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Play Framework 2.0.1 (Scala) 应用程序中,我们使用了返回 java.util.concurrent.Future
的 Web 服务客户端库。作为回应。
而不是在 get()
上阻止 Play 应用程序打电话,我们想包装 j.u.c.Future
在 akka.dispatch.Future
,让我们可以方便的使用play框架的AsyncResult
加工。
有没有人以前做过这个,或者有一个库或示例代码?
更新 :我们发现的最接近的是这个谷歌小组讨论:https://groups.google.com/forum/#!topic/play-framework/c4DOOtGF50c
...if all you have is a plain j.u.c.Future the best you can do to create a non blocking solution is to take the j.u.c.Future and a Promise, and give them to some thread running a polling loop that will complete the Promise with the result of the Future when it is done.
最佳答案
@Viktor Klang:我们知道 j.u.c.Future
是可憎的。但这就是我们从暂时必须接受的软件中得到的返回。
到目前为止,这是我们一起破解的:
def wrapJavaFutureInAkkaFuture[T](javaFuture: java.util.concurrent.Future[T], maybeTimeout: Option[Duration] = None)(implicit system: ActorSystem): akka.dispatch.Future[T] = {
val promise = new akka.dispatch.DefaultPromise[T]
pollJavaFutureUntilDoneOrCancelled(javaFuture, promise, maybeTimeout.map(_.fromNow))
promise
}
Promise
(
Future
的写端)对应于
j.u.c.Future
, 开始回调
pollJavaFutureUntilDoneOrCancelled
通过轮询“abomination”来更新 Promise,并将 Promise 返回给调用者。
def pollJavaFutureUntilDoneOrCancelled[T](javaFuture: java.util.concurrent.Future[T], promise: akka.dispatch.Promise[T], maybeDeadline: Option[Deadline] = None)(implicit system: ActorSystem) {
if (maybeDeadline.exists(_.isOverdue)) javaFuture.cancel(true);
if (javaFuture.isDone || javaFuture.isCancelled) {
promise.complete(allCatch either { javaFuture.get })
} else {
Play.maybeApplication.foreach { implicit app =>
system.scheduler.scheduleOnce(50 milliseconds) {
pollJavaFutureUntilDoneOrCancelled(javaFuture, promise, maybeDeadline)
}
}
}
}
关于scala - 如何在 Akka Future 中包装 java.util.concurrent.Future?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11529145/
我是一名优秀的程序员,十分优秀!