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).
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 portOperatorSemaphore
but it quickly became terrifying.I have not implemented the other two (
deliverLatestCacheToView
anddeliverToView
) 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.