``` networkLoad() .subscribeOn(io()) .star...
# rx
j
Copy code
networkLoad()
    .subscribeOn(io())
    .startWith(cacheCompute())
    .subscribeOn(computation())
    .observeOn(mainThread())
👍 2
m
Very nice example.