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

libretto.zio_interop.package.scala Maven / Gradle / Ivy

The newest version!
package libretto.zio_interop

import libretto.stream.scaletto.DefaultStreams.ValSource
import libretto.util.Async
import zio.{UIO, ZIO}
import zio.stream.UStream

extension [A](stream: UStream[A]) {
  def asSource: Ztuff[ValSource[A]] =
    Ztuff.ZioUStream(stream)
}

extension [A](fa: Async[A]) {
  def toZIO: UIO[A] =
    ZIO.async(callback => fa.onComplete(a => callback(ZIO.succeed(a))))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy