byzhang / signal-collect

Automatically exported from code.google.com/p/signal-collect
0 stars 0 forks source link

Improve RPC via MessageBus #15

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Currently the WorkerProxy blocks until an operation has been executed. This 
should be improved by returning a Future immediately.

Original issue reported on code.google.com by philip.stutz on 7 Oct 2011 at 3:56

GoogleCodeExporter commented 9 years ago
Thought about this and actually the current solution with parallel collections 
is pretty nice and wouldn't be improved by using futures. If a future is 
desired this is really easy and can be combined with the current approach of 
blocking calls: http://blog.tackley.net/2010/01/scala-futures.html

Original comment by philip.stutz on 14 Oct 2011 at 3:10