Skip to content

Instantly share code, notes, and snippets.

@VicMikhailau
Created July 31, 2020 11:38
Show Gist options
  • Save VicMikhailau/ebc13d5f874c839008cc61e09bf9b155 to your computer and use it in GitHub Desktop.
Save VicMikhailau/ebc13d5f874c839008cc61e09bf9b155 to your computer and use it in GitHub Desktop.
RxJava2->RxJava3
io.reactivex.android.schedulers.AndroidSchedulers
to
io.reactivex.rxjava3.android.schedulers.AndroidSchedulers
io.reactivex.schedulers.Schedulers
to
io.reactivex.rxjava3.schedulers.Schedulers
io.reactivex.Observable
to
io.reactivex.rxjava3.core.Observable
io.reactivex.Single
to
io.reactivex.rxjava3.core.Single
io.reactivex.disposables.Disposable
to
io.reactivex.rxjava3.disposables.Disposable
io.reactivex.Completable
to
io.reactivex.rxjava3.core.Completable
io.reactivex.subjects.PublishSubject
to
io.reactivex.rxjava3.subjects.PublishSubject
io.reactivex.disposables.CompositeDisposable
to
io.reactivex.rxjava3.disposables.CompositeDisposable
io.reactivex.functions.BiFunction
to
io.reactivex.rxjava3.functions.BiFunction
io.reactivex.functions.Function
to
io.reactivex.rxjava3.functions.Function
io.reactivex.functions.Consumer
to
io.reactivex.rxjava3.functions.Consumer
io.reactivex.functions.Action
to
io.reactivex.rxjava3.functions.Action
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment