Code Monkey home page Code Monkey logo

Comments (2)

Zhuinden avatar Zhuinden commented on July 3, 2024

Heyo, yes and no.

You do need to add something eagerly that will be able to receive the callbacks from simple-stack in case you need them.

However, that thing can lazily instantiate and store something.

The tricky thing there is to have a good name by which you reference it. When you use globalServices.add(t), you really are saying globalServices.addService(T::class.java, t).

So you could have something like this:

class CreateLazily<T>(private val factory: () -> T) {
    val instance by lazy { factory() }
}

and then

globalServices.addService("someName", CreateLazily { YourLazyObject() })

But now you have to know "someName" and to retrieve your instance as CreateLazily<YourLazyObject>.

(You could probably replace this idea of CreateLazily with Kotlin's Lazy directly https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-lazy/ ).

So nothing stops you from making something lazy (although when you'd be getting Bundleable or ScopedServices.Registered you would get initialized anyway 🤔 ) but giving a good name would be a struggle.

Personally I would add my object eagerly, and whatever you want as "a lazy service" should just be lazily initialized by that eagerly created service later.

from simple-stack.

Zhuinden avatar Zhuinden commented on July 3, 2024

A scope node is meant to be immutable once created. I advise deferring laziness to an eagerly added scoped service that you add to service binder, and this scoped service will hold your Lazy<T>s + you must delegate the callbacks over if they are accessed.

This is outside the scope of Simple-Stack, as we have no prescriptions for the internals of a scoped service, and implementing Composite pattern + Lazy services would require such prescriptions.

from simple-stack.

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.