You’re right, you can save yourself from creating a new CompositeDisposable
for each time the corresponding view is created, but instead treat a CompositeDisposable
as a single instance tied to the onCreate/onDestroy
lifecycle methods and treat aggregated disposables as part of the fragment view calling clear
in onDestroyView
.