Chandra Sekar S
Chandra Sekar S
Thanks for your feedback. Connect integration is definitely in the roadmap. I'm yet to get myself familiar with Connect as I'm still finding new things in core node.js to understand....
Where is the concurrency here? `Future.successful` returns an already completed future and hence this entire program runs sequentially.
Do `Future.sequence` or `map` spawn actors? If not, which operation in this code creates them? I'm don't think just looking at the CPU usage is the right way to determine...
@naveensky I don't think they're the same at all, due to how awaiting works. `await` in .Net doesn't block the thread, but `Await.result` in scala [does](http://docs.scala-lang.org/overviews/core/futures.html#blocking-outside-the-future).
@naveensky Their return type is identical, but their behavior is very different. See @Daxten's reply.
@Daxten Why isn't creating actors the same as creating threads in same execution context? Also if I understand correctly isn't the way Futures are used here the same as submitting...
Is there anyway to introduce a sleep in the leaf Futures, without blocking the underlying thread? That can demonstrate concurrency in the program, if it terminates in few seconds. For...