gopher.impl.ChFlatMappedChannel.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-gopher_3.0.0-RC2 Show documentation
Show all versions of scala-gopher_3.0.0-RC2 Show documentation
scala-gopher: asynchronous implementation of CSP ( go-like channels/selectors ) in scala
The newest version!
package gopher.impl
import gopher._
class ChFlatMappedChannel[F[_],W,RA,RB](internal: Channel[F,W,RA], f: RA=>ReadChannel[F,RB]) extends ChFlatMappedReadChannel[F,RA,RB](internal, f)
with Channel[F,W,RB]:
override def addWriter(writer: Writer[W]): Unit =
internal.addWriter(writer)
override def close(): Unit =
internal.close()
override def isClosed: Boolean =
internal.isClosed
© 2015 - 2025 Weber Informatics LLC | Privacy Policy