Subscribe on¶
See also
- Official ReactiveX documentation: SubscribeOn
-
Observable.
subscribe_on
(scheduler)¶ Subscribe on the specified scheduler.
Wrap the source sequence in order to run its subscription and unsubscription logic on the specified scheduler. This operation is not commonly used; see the remarks section for more information on the distinction between subscribe_on and observe_on.
Keyword arguments: scheduler – Scheduler to perform subscription and unsubscription
actions on.Returns the source sequence whose subscriptions and unsubscriptions happen on the specified scheduler.
This only performs the side-effects of subscription and unsubscription on the specified scheduler. In order to invoke observer callbacks on a scheduler, use observe_on.