Coder Social home page Coder Social logo

Comments (2)

Dosssik avatar Dosssik commented on June 8, 2024

Hi @bitvale!
This is not a library issue.
If you use Moxy without Dagger, then presenter lifecycle is pretty simple: presenter will be alive until fragment exists and it will survive fragment's recreation. When u'll pop fragment from the back stack - presenter will be destroyed.

If you use Dagger for providing presenter then you have to manage presenter lifecycle manually, cuz you create presenter by your own. In your example you create new presenter each time when fragment calls providePresenter(). That's why you have couple of presenter's instance. You can configure Dagger to provide singleton instance for your presenter. And, sure, you will be responsible to destroy presenter when you will no need it - be carefull cuz Dagger could hold the reference to your presenter. Subcomponents could help there...
All this headacke gone if you provide presenters by default library's way, without Dagger ;)

Cheers

from moxy.

bitvale avatar bitvale commented on June 8, 2024

But my presenter is annotated with custom annotation and is a singleton. And new instance of presenter is not created each time fragment calls providePresenter(). I think if I use @ProvidePresenter then presenter is attached to Moxy life circle and Moxy is responsible to destroy them, not it?

from moxy.

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.