RxBus2
RxBus2 copied to clipboard
RxJava2 based bus with queuing (e.g. lifecycle based) support
**Idea** 1. Define subcriptions via annotations: @RxBusSubscribe public void onEvent(Event event) { // handle bus event here } 2. Annotation processor should generate functions in this class: public final void...
Following happens: **Case 1 - Correct** * unlock your screen and start the demo _Following TestEvent logs will be printed:_ ```groovy DemoActivity: Type: QUEUED BUS [ActualClass: TestEvent] (key=NONE), Event: TEST...