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

e.ultra.kontainer.0.77.0.source-code.InjectionType.kt Maven / Gradle / Ivy

The 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