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

reactify.standard.StandardChannel.scala Maven / Gradle / Ivy

The newest version!
package reactify.standard

import reactify.Channel

class StandardChannel[T](override val name: Option[String]) extends Channel[T] {
  override def set(value: => T): Unit = fire(value, None, reactions())
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy