Reactive OkHttp
A think RxJava Observable wrapper around OKHttp. You can use it to build reactive REST API clients. rx-docker-client uses this API.
Getting Started
To use rx-okhttp in your application, you have to add rx-okhttp
in your classpath. rx-okhttp is available on Maven Central so you just need to add dependency to your favorite build tool as show below.
For Apache Maven users, please add following to your pom.xml.
<dependencies>
<dependency>
<groupId>com.shekhargulati.reactivex</groupId>
<artifactId>rx-okhttp</artifactId>
<version>0.1.8</version>
</dependency>
</dependencies>
Gradle users can add following to their build.gradle file.
compile 'com.shekhargulati.reactivex:rx-okhttp:0.1.8'