Created
October 9, 2018 23:10
-
-
Save zsoltk/f556cca02a8f8d90da7b8b168691de1d 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
fun Completable.toBinderLifecycle() = Lifecycle.wrap( | |
Observable.concat( | |
Observable.just(BEGIN), | |
this.andThen(Observable.just(END)) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment