Skip to content

Instantly share code, notes, and snippets.

@zsoltk
Created October 9, 2018 23:10
Show Gist options
  • Save zsoltk/f556cca02a8f8d90da7b8b168691de1d to your computer and use it in GitHub Desktop.
Save zsoltk/f556cca02a8f8d90da7b8b168691de1d to your computer and use it in GitHub Desktop.
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