💡Disposing subscription is mostly an antipattern. RX have completion of observables.
In .NET we are used to manually dispose anything IDisposable. IObservable<T>.Subscribe(..) method returns IDisposable, so we should dispose it to unsubscribe from underlying source and avoid possible memory leak, right? Wrong.
class MyComponent(IObservable<