1 min readMay 26, 2017
Hey Lang,
the issue that Edio had was different. He wanted for the method that he used in just
to be called in the thread the specified with subscribeOn
. Something like this: just(someMethod()).
And that method is invoked before subscribeOn
has it’s effect. But in your and with Edio case, everything after just
or from
will be called on the thread specified in subscribeOn
because those actions are now executed in stream flow.
Let me know if this clears up the stuff.
Tomek