Code Monkey home page Code Monkey logo

Comments (8)

ds1709 avatar ds1709 commented on June 21, 2024

After a little researche, I found that subscription is cached in _innerSerialDisposable field of class Switch<T>._. When MenuItem is added or removed, VisualParentProperty of it changes. Each change of property calls OnNext method of Switch<T>._. Each call creates new instance of InnerObserver and stores it in _innerSerialDisposable, but do nothing with old value. I just simply added _innerSerialDisposable.Dispose call befo setting new value, and now memory leak is gone.

        public override void OnNext(IObservable<TSource> value)
        {
            ulong id;

            lock (_gate)
            {
                id = unchecked(++_latest);
                _hasLatest = true;
            }

            var innerObserver = new InnerObserver(this, id);

            _innerSerialDisposable?.Dispose();  // <== Added Dispose call before setting new value.
            _innerSerialDisposable = innerObserver;
            innerObserver.Disposable = value.Subscribe(innerObserver);
        }

from avalonia.

timunie avatar timunie commented on June 21, 2024

@ds1709 probably worth to file a PR

from avalonia.

ds1709 avatar ds1709 commented on June 21, 2024

@timunie I need this fix in version 11.0.*. So, do I need to create two PR, one in branch 11.0 and another in develop?

from avalonia.

timunie avatar timunie commented on June 21, 2024

@ds1709 for 11.0 this requires probably a support agreement as we are only backporting for upcomming 11.1 at this point of time.

from avalonia.

ds1709 avatar ds1709 commented on June 21, 2024

@timunie is there any problem with support 11.0 version? This fix is not complex, so release 11.0.11 should be easy.

from avalonia.

timunie avatar timunie commented on June 21, 2024

Limited resources. Nothing else.

from avalonia.

ds1709 avatar ds1709 commented on June 21, 2024

Is there any chance to get this fix in version 11.0? And another question, when is it planned to release version 11.1 (no beta)? According to the commot graph, there are a big amount of improvements from release 11.1.0-beta2. Same for 11.0.10, there are improvements, that wasn't released.

from avalonia.

timunie avatar timunie commented on June 21, 2024
  1. You can request 11.0 backports if you have paid support. Reach out via website if you are interested in general
  2. 11.0.10 is actually relesed. You may need to pull templates again
  3. 11.1 should drop soonish if there's no regression found while rc testings. No actual due date

Thanks for your understanding

from avalonia.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.