<dependency>
<groupId>com.eslimaf</groupId>
<artifactId>kombi</artifactId>
<version>0.1.0</version>
<type>pom</type>
</dependency>
compile 'com.eslimaf:kombi:<latest version>'
The API is based on getting your Kombi out of the Garage.
Garage will hold a unique instance
String licensePlate = "ObjectBus";
RxKombi<Object> objectKombi = Garage.getInstance().rideKombi(licensePlate);
Once you get a RxKombi object you will be able to send and subscribe
objectKombi.send(new Object());
or
objectKombi.toObservable().<RxJava Observable construction>