Question. If I pass in Dispossable into CompositeD...
# rx
l
Question. If I pass in Dispossable into CompositeDisposable if the termination event happens is the given dispossable evicted or still present ?
p
If you called
.unsubscribe
on the
CompositeDisposable
, the added
Disposable
will be unsubscribed immediately. If you called
.clear()
it’s like it’s fresh.
l
No the problem was that I was not getting disposeOn after termination event after putting observable into composite.