You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The operator will not dispose the inner windows if you dispose the outer sequence of windows. You should not ignore the inner windows produced by the operator. Most use cases have flatMap to merge the windows back which will dispose all of them as you expected.
Hi,
I believe I encountered
window
operator leaking observable subscriptions. Here is a small test to reproduce the issue:The output is:
From the output you can see that cancellables for
observable(1)
andobservable(2)
are never called.This may be severe if cancellables are used to dispose some (possibly) critical resources upon subscription disposal.
The text was updated successfully, but these errors were encountered: