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

jvmMain.ConstantRaptorSettingsValueProvider.kt Maven / Gradle / Ivy

There is a newer version: 0.27.0
Show newest version
package io.fluidsonic.raptor


private class ConstantRaptorSettingsValueProvider(
	override val value: Value?,
) : RaptorSettings.ValueProvider {

	override val description: String
		get() = "constant"
}


public fun  RaptorSettings.ValueProvider.Companion.constant(value: Value?): RaptorSettings.ValueProvider =
	ConstantRaptorSettingsValueProvider(value)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy