###Upgrade Notes
-
Remove all usages of
IRXBusObservableProcessor
, you can now pass a native rx javaTransformer
to the builder instead -
Renamings:
-
RXBusBuilder.withBusMode
=>RXBusBuilder.withMode
-
RXBusBuilder.queue
=>RXBusBuilder.withQueuing
-
RXBusBuilder.withOnNext
and similar =>RXBusBuilder.subscribe
and this will now directly return a Subscription`
-
-
NEW:
RXBusBuilder.withBound(objectToBind)
=> this will now directly callRXSubscriptionManager.addSubscription(objectToBind, subscription);
when you callRXBusBuilder.subscribe
- Remove all usages of
IRXBusIsResumedProvider
andIRXBusResumedListener
- for using queuing, the "queuer" now must implement the
IRXBusQueue
interface, see thePauseAwareActivity
for an example:PauseAwareActivity
- the before mentioned "queuer" must be passed to the
RXBusBuilder.queue
function now