You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was previously using RxLifecycle and played around a bit with AutoDispose. So far it works great, but i miss the bindUntilEvent method from RxLifecycle.
I have seen the other issue about this, but could not manage to get it to work, especially when using architecture components integration...
Some samples or even better, a first class api would be very appreciated.
My current RxLifecycle code looks like this:
errorButton.clicks()
.bindUntilEvent(this, Lifecycle.Event.ON_DESTROY)
.subscribe {
// Do something.
}
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Hmmm, I suppose we could have an overload for from that accepts a target event and just filters on that. Interested in contributing a PR? If not I can get around to it this week
Version:
0.3.0
I was previously using
RxLifecycle
and played around a bit withAutoDispose
. So far it works great, but i miss thebindUntilEvent
method fromRxLifecycle
.I have seen the other issue about this, but could not manage to get it to work, especially when using architecture components integration...
Some samples or even better, a first class api would be very appreciated.
My current
RxLifecycle
code looks like this:Thanks in advance!
The text was updated successfully, but these errors were encountered: