Skip to content

Sextant navigation from ReactiveContentPage to ReactiveFlyoutPage #3721

Answered by ChrisPulman
DanielCauser asked this question in Q&A
Discussion options

You must be logged in to vote

Hi Daniel,

Sorry we took so long to give you an answer.

I took a look at your code and you are calling SubscribeOn instead of Subscribe.

Sextant uses Observables and requires the execution to be started with a subscription.
SubscribeOn is used to change the Schedular for the subscription to execute on but still requires Subscribe to be called.
There is a handful of situations where SubscribeOn is required as in majority you want the Execution to happen on the Taskpool threads and then most often the Observer wants to receive the result on a UI thread therefore ObserveOn is called before Subscribe to change threads for displaying the result on a user interface. This mechanism is not requir…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by ChrisPulman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants