iex
10/05/2020, 3:02 PMCompletable
) subscription on click?
I developed the habit lately to use a PublishSubject
trigger and subscribe to it in init
, but saw code again that uses the "subscription on tap" pattern and I'm wondering whether my pattern is overkill?alexsullivan114
10/06/2020, 11:26 AMCompletable
doing? The only that that comes to my mind is if you're doing something like making a network call or doing something expensive you may want to debounce
the source. Otherwise I don't see why creating a new Completable
on tap is a bad move.ursus
10/06/2020, 5:10 PMiex
10/12/2020, 7:32 AM