A placeholder for the result of a calculation before the calculation has completed.
I'm writing a Scala application using ReactiveMongo driver. The methods that access to the db return always Future[T]. Are …
scala asynchronous future reactive-programmingWhy does my unit test succeed in debug mode but fail when running it normally? public class ExecutorServiceTest extends MockitoTestCase{ …
java multithreading junit future callableOk, so I know the first answer / comment here will be "use one ExecutorService and use invokeAll". However, there is …
java concurrency executorservice futureIs it possible to chain scala.util.Try and scala.concurrent.Future? They both effectively provide the same monadic interface, …
scala exception-handling futureI have this issue that I have to work around every time. I can't map over something that is contained …
scala futureI know that the apply method of Function returns an object synchronously, and the apply of AsyncFunction runs asynchronously and …
java guava future concurrent.futuresFuture.apply starts an asynchronous computation whereas Future.successful creates an already completed Future with the specified result. Now is …
scala futureI have the following code where I have a list of usernames and I try and check if the users …
python python-3.x futureIn my Scala app, I have a function that calls a function which returns a result of type Future[T]. …
scala dictionary recursion future tailI am using: Scala 2.10 Play 2.1 Currently, I am using the Future class from scala.concurrent._, but I'm open to trying …
scala asynchronous playframework future playframework-2.1