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

commonMain.ru.casperix.signals.functor.FunctorSignal.kt Maven / Gradle / Ivy

There is a newer version: 1.8.2
Show newest version
package ru.casperix.signals.functor

import ru.casperix.signals.api.AbstractSignal

class FunctorSignal, Event> : FunctorPromise, AbstractSignal(FunctorCollection()) {
	override fun send(value: Event) {
		forEach { listener ->
			listener.receiver(value)
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy