Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 819 Bytes

File metadata and controls

25 lines (13 loc) · 819 Bytes

{% if book.isPdf %}

subscribeOn

{% else %}

{% endif %}

Wraps the source sequence in order to run its subscription and unsubscription logic 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 observeOn.

Arguments

  1. scheduler (Scheduler): Scheduler to notify observers on.

Returns

(Observable): The source sequence whose observations happen on the specified scheduler.

Example