Created
April 5, 2020 10:31
-
-
Save therohansanap/b1c286a20c7fd990d7fc09a7207f39eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let safeSequence = xs | |
| .observeOn(MainScheduler.instance) // observe events on main scheduler | |
| .catchErrorJustReturn(onErrorJustReturn) // can't error out | |
| .share(replay: 1, scope: .whileConnected) // side effects sharing | |
| return Driver(raw: safeSequence) // wrap it up |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment