エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
GitHub - JakeWharton/RxJava2Interop: Library to convert between RxJava 1.x and 2.x reactive types.
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
GitHub - JakeWharton/RxJava2Interop: Library to convert between RxJava 1.x and 2.x reactive types.
import static hu.akarnokd.rxjava.interop.RxJavaInterop.* ; // convert from 1.x to 2.x io.reactive... import static hu.akarnokd.rxjava.interop.RxJavaInterop.* ; // convert from 1.x to 2.x io.reactivex . Flowable f2 = RxJavaInterop . toV2Flowable( rx . Observable ); io.reactivex . Observable o2 = RxJavaInterop . toV2Observabe( rx . Observable ); io.reactive . Single s2 = RxJavaInterop . toV2Single( rx . Single ); io.reactivex . Completable c2 = RxJavaInterop . toV2Completable( rx . Completable ); /
2016/10/26 リンク