Class/Object

zio.stream

ZTransducer

Related Docs: object ZTransducer | package stream

Permalink

abstract class ZTransducer[-R, +E, -I, +O] extends AnyRef

Self Type
ZTransducer[R, E, I, O]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ZTransducer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ZTransducer(push: ZManaged[R, Nothing, (Option[Chunk[I]]) ⇒ ZIO[R, E, Chunk[O]]])

    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 &>[R1 <: R, E1 >: E, I1 <: I, O2](that: ZTransducer[R1, E1, I1, O2]): ZTransducer[R1, E1, I1, O2]

    Permalink

    Symbolic alias for ZTransducer#zipRight.

  4. final def <&[R1 <: R, E1 >: E, I1 <: I, O2](that: ZTransducer[R1, E1, I1, O2]): ZTransducer[R1, E1, I1, O]

    Permalink

    Symbolic alias for ZTransducer#zipLeft.

  5. final def <&>[R1 <: R, E1 >: E, I1 <: I, O2](that: ZTransducer[R1, E1, I1, O2]): ZTransducer[R1, E1, I1, (O, O2)]

    Permalink

    Symbolic alias for ZTransducer#zip.

  6. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  7. def >>>[R1 <: R, E1 >: E, O2 >: O, I1 <: I, Z](that: ZSink[R1, E1, O2, Z]): ZSink[R1, E1, I1, Z]

    Permalink

    Compose this transducer with a sink, resulting in a sink that processes elements by piping them through this transducer and piping the results into the sink.

  8. def >>>[R1 <: R, E1 >: E, O2 >: O, O3](that: ZTransducer[R1, E1, O2, O3]): ZTransducer[R1, E1, I, O3]

    Permalink

    Compose this transducer with another transducer, resulting in a composite transducer.

  9. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def contramap[J](f: (J) ⇒ I): ZTransducer[R, E, J, O]

    Permalink
  12. final def contramapM[R1 <: R, E1 >: E, J](f: (J) ⇒ ZIO[R1, E1, I]): ZTransducer[R1, E1, J, O]

    Permalink
  13. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def filter(p: (O) ⇒ Boolean): ZTransducer[R, E, I, O]

    Permalink

    Filters the outputs of this transducer.

  16. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. final def map[P](f: (O) ⇒ P): ZTransducer[R, E, I, P]

    Permalink

    Transforms the outputs of this transducer.

  21. final def mapChunks[O2](f: (Chunk[O]) ⇒ Chunk[O2]): ZTransducer[R, E, I, O2]

    Permalink

    Transforms the chunks emitted by this transducer.

  22. final def mapChunksM[R1 <: R, E1 >: E, O2](f: (Chunk[O]) ⇒ ZIO[R1, E1, Chunk[O2]]): ZTransducer[R1, E1, I, O2]

    Permalink

    Effectfully transforms the chunks emitted by this transducer.

  23. final def mapError[E1](f: (E) ⇒ E1): ZTransducer[R, E1, I, O]

    Permalink

    Transforms the outputs of this transducer.

  24. final def mapM[R1 <: R, E1 >: E, P](f: (O) ⇒ ZIO[R1, E1, P]): ZTransducer[R1, E1, I, P]

    Permalink

    Effectually transforms the outputs of this transducer

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

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

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

    Permalink
    Definition Classes
    AnyRef
  28. val push: ZManaged[R, Nothing, (Option[Chunk[I]]) ⇒ ZIO[R, E, Chunk[O]]]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def zip[R1 <: R, E1 >: E, I1 <: I, O2](that: ZTransducer[R1, E1, I1, O2]): ZTransducer[R1, E1, I1, (O, O2)]

    Permalink

    Zips this transducer with another point-wise and emits tuples of elements from both transducers.

  35. def zipLeft[R1 <: R, E1 >: E, I1 <: I, O2](that: ZTransducer[R1, E1, I1, O2]): ZTransducer[R1, E1, I1, O]

    Permalink

    Zips this transducer with another point-wise, but keeps only the outputs of this transducer.

  36. def zipRight[R1 <: R, E1 >: E, I1 <: I, O2](that: ZTransducer[R1, E1, I1, O2]): ZTransducer[R1, E1, I1, O2]

    Permalink

    Zips this transducer with another point-wise, but keeps only the outputs of the other transducer.

  37. def zipWith[R1 <: R, E1 >: E, I1 <: I, O2, O3](that: ZTransducer[R1, E1, I1, O2])(f: (O, O2) ⇒ O3): ZTransducer[R1, E1, I1, O3]

    Permalink

    Zips this transducer with another point-wise and applies the function to the paired elements.

Inherited from AnyRef

Inherited from Any

Ungrouped