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

jvmMain.implementation.ServiceDIKey.kt Maven / Gradle / Ivy

package io.fluidsonic.raptor.lifecycle

import io.fluidsonic.raptor.di.*


internal class ServiceDIKey(
	val name: String,
) : RaptorDIKey {

	override val isOptional: Boolean
		get() = false


	override fun notOptional(): ServiceDIKey =
		this


	override fun toString(): String =
		"RaptorService ($name)"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy