我在我的控制器中使用 Finagle 客户端的方法(FinagleClient.longRunningComputation)
def alfa = Action.async(parse.json) { request =>
val response = FinagleClient.longRunningComputation(request.body )
response.map( rest => Ok("Got result: " + rest ))
}
我需要在我的游戏控制器中获得 com.twitter.util.Future 的结果
我尝试使用Returning futures,但编译器返回以下错误:
found : com.twitter.util.Future[play.api.mvc.Result]
required: scala.concurrent.Future[play.api.mvc.Result]
response.map(rest => Ok("Got result: " + rest))
我需要在我的游戏控制器中使用 com.twitter.util.Future
我怎样才能做到这一点?