When having a button click that starts api call, w...
# rx
u
When having a button click that starts api call, what would be the best way to cancel this call? I’m using
Observable
when working with
Retrofit2
. Don’t know what to choose to cancel this call: using
takeUntil()
operator or disposing
Disposable
. Thank you.