![JAR search and dependency download from the Maven repository](/logo.png)
outwatch.Pipe.scala Maven / Gradle / Ivy
package outwatch
import cats.effect.IO
import monix.execution.Scheduler
import outwatch.Sink.{ObservableSink, SubjectSink}
import outwatch.dom.Observable
object Pipe {
private[outwatch] def apply[I, O](sink: Sink[I], source: Observable[O]): Pipe[I, O] =
new ObservableSink[I, O](sink, source)
/**
* This function also allows you to create initial values for your newly created Pipe.
* This is equivalent to calling `startWithMany` with the given values.
*
* @param seeds a sequence of initial values that the Pipe will emit.
* @tparam T the type parameter of the elements
* @return the newly created Pipe.
*/
def create[T](seeds: T*)(implicit s: Scheduler): IO[Pipe[T, T]] = create[T].map { pipe =>
if (seeds.nonEmpty) {
pipe.transformSource(_.startWith(seeds))
}
else {
pipe
}
}
def create[T](implicit s: Scheduler): IO[Pipe[T, T]] = IO {
val subjectSink = SubjectSink[T]()
Pipe(subjectSink, subjectSink)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy