In my application i am using Reactive extensions for making web request . What my issue is, i am making two requests. In the first request i will get a url from the sever and by using that url i am sending another request for fetching image and description. In my first request apart from url i will get the title and date related information. So what i am doing is i will parse the data in my model class and from there i will call the other request. Here when i receive response i will add that in to my class object that can hold the result. And when the complete(onnext,error,complete) portion of my first request reaches i will get the both result in my property. But the issue is that the corresponding change ,ie the result of second web request is not reflecting on my UI. Please anyone help me to avoid this issue.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Here's how I would structure your code - it's not a complete solution as you'll need to fill in the blanks a bit - but it should make it easier. I started with the assumption that you would have classes like this:
Now I created these two functions:
They represent the two parts of your code. Here's how to join them together:
The Rx magic using |
|||
|
|
|
Are you a) jumping back to the UI thread using |
|||||||
|
SelectManycall to tie both of your requests together into a single query? – Enigmativity Mar 7 '12 at 8:58