Object

fs2

pipe2

Related Doc: package fs2

Permalink

object pipe2

Source
pipe2.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. pipe2
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Stepper[-I, -I2, +O] extends AnyRef

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Stepper

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def covary[F[_], I, I2, O](p: Pipe2[Pure, I, I2, O]): Pipe2[F, I, I2, O]

    Permalink
  8. def either[F[_], I, I2](implicit arg0: Async[F]): Pipe2[F, I, I2, Either[I, I2]]

    Permalink

    Like merge, but tags each output with the branch it came from.

  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. def interleave[F[_], O]: Pipe2[F, O, O, O]

    Permalink
  15. def interleaveAll[F[_], O]: Pipe2[F, O, O, O]

    Permalink
  16. def interrupt[F[_], I](implicit arg0: Async[F]): Pipe2[F, Boolean, I, I]

    Permalink

    Let through the s2 branch as long as the s1 branch is false, listening asynchronously for the left branch to become true.

    Let through the s2 branch as long as the s1 branch is false, listening asynchronously for the left branch to become true. This halts as soon as either branch halts.

  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def merge[F[_], O](implicit arg0: Async[F]): Pipe2[F, O, O, O]

    Permalink

    Interleave the two inputs nondeterministically.

    Interleave the two inputs nondeterministically. The output stream halts after BOTH s1 and s2 terminate normally, or in the event of an uncaught failure on either s1 or s2. Has the property that merge(Stream.empty, s) == s and merge(fail(e), s) will eventually terminate with fail(e), possibly after emitting some elements of s first.

  19. def mergeDrainL[F[_], I, I2](implicit arg0: Async[F]): Pipe2[F, I, I2, I2]

    Permalink

    Defined as s1.drain merge s2.

    Defined as s1.drain merge s2. Runs s1 and s2 concurrently, ignoring any output of s1.

  20. def mergeDrainR[F[_], I, I2](implicit arg0: Async[F]): Pipe2[F, I, I2, I]

    Permalink

    Defined as s1 merge s2.drain.

    Defined as s1 merge s2.drain. Runs s1 and s2 concurrently, ignoring any output of s1.

  21. def mergeHaltBoth[F[_], O](implicit arg0: Async[F]): Pipe2[F, O, O, O]

    Permalink

    Like merge, but halts as soon as _either_ branch halts.

  22. def mergeHaltL[F[_], O](implicit arg0: Async[F]): Pipe2[F, O, O, O]

    Permalink

    Like merge, but halts as soon as the s1 branch halts.

  23. def mergeHaltR[F[_], O](implicit arg0: Async[F]): Pipe2[F, O, O, O]

    Permalink

    Like merge, but halts as soon as the s2 branch halts.

  24. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. def stepper[I, I2, O](p: Pipe2[Pure, I, I2, O]): Stepper[I, I2, O]

    Permalink
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. def zip[F[_], I, I2]: Pipe2[F, I, I2, (I, I2)]

    Permalink
  34. def zipAll[F[_], I, I2](pad1: I, pad2: I2): Pipe2[F, I, I2, (I, I2)]

    Permalink
  35. def zipAllWith[F[_], I, I2, O](pad1: I, pad2: I2)(f: (I, I2) ⇒ O): Pipe2[F, I, I2, O]

    Permalink
  36. def zipWith[F[_], I, I2, O](f: (I, I2) ⇒ O): Pipe2[F, I, I2, O]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped