java - How complete list of object into another object uqing Rxjava -


on service, client has on or many relationships.

using rxjava when client want retrieve client object list of relationships.

something like:

datamanager.getclient(clientid)                     .zipwith(???)                     .observeon(androidschedulers.mainthread())                     .subscribeon(schedulers.io())                     .subscribe(); 

use map function change scope of data within observable:

datamanager.getclient(clientid)             .map(client -> client.relationships)             .observeon(androidschedulers.mainthread)             .subscribeon(schedulers.io())             .subscribe(list -> {                 *do something*             }); 

Comments

Popular posts from this blog

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -