vote up 2 vote down star

I have to invoke REST endpoints A, B & C in parallel and combine the resulting JSON from each into one JSON. All REST endpoints reside on different servers.

My initial design calls for 3 Callables executed via FutureTasks. I will then do a Future.get(1000ms) on each FutureTask until they return a value. Is this how you would solve this problem ?

flag

79% accept rate

1 Answer

vote up 1 vote down check

That's how I would do it. I really like the Future interface.

link|flag
I'm not really sure what the "That's" is referring to, but great link. – stevedbrown Jun 26 at 13:27
The original poster's description of his initial design. – Don Kirkby Jun 26 at 15:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.