GCX-HCI / ThirtyInch

a MVP library for Android favoring a stateful Presenter
Apache License 2.0
1.03k stars 101 forks source link

Add deliverLatestToView to rx2/RxTiPresenterUtils #137

Closed GrahamBorland closed 6 years ago

GrahamBorland commented 6 years ago

This adds an implementation of deliverLatestToView to rx2/RxTiPresenterUtils.

It uses only existing RxJava2 operators, rather than the OperatorSemaphore from the Rx1 utils. I did initially try to port OperatorSemaphore but it quickly became terrifying.

I have not implemented the other two (deliverLatestCacheToView and deliverToView) since I have no use for them yet, and I'm not really sure what they are meant to do anyway. (Their documentation is confusing - see #34).

Partial fix for #9.

GrahamBorland commented 6 years ago

Comment adjusted, thanks.