e.ultra.kontainer.0.77.0.source-code.InjectionType.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kontainer Show documentation
Show all versions of kontainer Show documentation
"Kotlin Depdency Injection Framework"
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