Skip to content

Instantly share code, notes, and snippets.

@antonicg
Last active May 8, 2020 13:58
Show Gist options
  • Save antonicg/6c9fbd5684de36d386b80231adf5b4a3 to your computer and use it in GitHub Desktop.
Save antonicg/6c9fbd5684de36d386b80231adf5b4a3 to your computer and use it in GitHub Desktop.
val disposable = someObservable.subscribe()
disposable.dispose()
// or...
val compositeDisposable = CompositeDisposable()
compositeDisposable.add(disposable)
compositeDisposable.dispose()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment