Just copy content of RxBus.kt to your project. Bear in mind that you need rxAndroid to use this bus.
RxBus.subscribe(ExampleEvent::class.java.name, this, Consumer {
it as ExampleEvent // pretty save casting
println(it.name)
})
RxBus.unsubscribe(this)