Let's say I have an Action Async block as below in one of my controller:
def myCntr = Action.async { implicit request =>
// Step 1. .... // look up over the network
// Step 2. .... // do a database call
}
What would it mean to wrap Step 1 and Step 2 in a Future? Is the Action.async enough to make myCntr calls asynchronous?