All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.InjectionType.kt Maven / Gradle / Ivy

There is a newer version: 0.77.0
Show newest version
package de.peekandpoke.ultra.kontainer

/**
 * Type of injection
 */
enum class InjectionType {
    /** A singleton service is shared across multiple kontainer instances */
    Singleton,

    /** For a prototype service a new instance is created whenever it is injected */
    Prototype,

    /** A dynamic service is a singleton that only lives within a single kontainer instance */
    Dynamic
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy