rxjava-completable
Combining RxJava Completables 1. Overview In this tutorial, we’ll play with RxJava’s Completable type, which represents a computation result without an actual value. 2. RxJava Dependency Let’s include the RxJava 2 dependency into our Maven project: <dependency> <groupId>io.reactivex.rxjava2</groupId> <artifactId>rxjava</artifactId> <version>2.2.2</version> </dependency> We can usually find the latest version on Maven Central. 3.… Continue Reading rxjava-completable