Packages

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. Protected

Instance Constructors

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def >>>[R1 <: R, E1 >: E, O2 >: O, I1 <: I, L, Z](that: ZSink[R1, E1, O2, L, Z])(implicit trace: ZTraceElement): ZSink[R1, E1, I1, L, Z]

    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.

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

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

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. final def contramap[J](f: (J) => I)(implicit trace: ZTraceElement): ZTransducer[R, E, J, O]

    Transforms the inputs of this transducer.

  9. final def contramapZIO[R1 <: R, E1 >: E, J](f: (J) => ZIO[R1, E1, I])(implicit trace: ZTraceElement): ZTransducer[R1, E1, J, O]

    Effectually transforms the inputs of this transducer

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. final def filter(p: (O) => Boolean)(implicit trace: ZTraceElement): ZTransducer[R, E, I, O]

    Filters the outputs of this transducer.

  13. final def filterInput[I1 <: I](p: (I1) => Boolean)(implicit trace: ZTraceElement): ZTransducer[R, E, I1, O]

    Filters the inputs of this transducer.

  14. final def filterInputZIO[R1 <: R, E1 >: E, I1 <: I](p: (I1) => ZIO[R1, E1, Boolean])(implicit trace: ZTraceElement): ZTransducer[R1, E1, I1, O]

    Effectually filters the inputs of this transducer.

  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def map[P](f: (O) => P)(implicit trace: ZTraceElement): ZTransducer[R, E, I, P]

    Transforms the outputs of this transducer.

  20. final def mapChunks[O2](f: (Chunk[O]) => Chunk[O2])(implicit trace: ZTraceElement): ZTransducer[R, E, I, O2]

    Transforms the chunks emitted by this transducer.

  21. final def mapChunksZIO[R1 <: R, E1 >: E, O2](f: (Chunk[O]) => ZIO[R1, E1, Chunk[O2]])(implicit trace: ZTraceElement): ZTransducer[R1, E1, I, O2]

    Effectfully transforms the chunks emitted by this transducer.

  22. final def mapError[E1](f: (E) => E1)(implicit trace: ZTraceElement): ZTransducer[R, E1, I, O]

    Transforms the outputs of this transducer.

  23. final def mapZIO[R1 <: R, E1 >: E, P](f: (O) => ZIO[R1, E1, P])(implicit trace: ZTraceElement): ZTransducer[R1, E1, I, P]

    Effectually transforms the outputs of this transducer

  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. val push: ZManaged[R, Nothing, (Option[Chunk[I]]) => ZIO[R, E, Chunk[O]]]
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. final def contramapM[R1 <: R, E1 >: E, J](f: (J) => ZIO[R1, E1, I])(implicit trace: ZTraceElement): ZTransducer[R1, E1, J, O]

    Effectually transforms the inputs of this transducer

    Effectually transforms the inputs of this transducer

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use contramapZIO

  2. final def filterInputM[R1 <: R, E1 >: E, I1 <: I](p: (I1) => ZIO[R1, E1, Boolean])(implicit trace: ZTraceElement): ZTransducer[R1, E1, I1, O]

    Effectually filters the inputs of this transducer.

    Effectually filters the inputs of this transducer.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use filterInputZIO

  3. final def mapChunksM[R1 <: R, E1 >: E, O2](f: (Chunk[O]) => ZIO[R1, E1, Chunk[O2]])(implicit trace: ZTraceElement): ZTransducer[R1, E1, I, O2]

    Effectfully transforms the chunks emitted by this transducer.

    Effectfully transforms the chunks emitted by this transducer.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapChunksZIO

  4. final def mapM[R1 <: R, E1 >: E, P](f: (O) => ZIO[R1, E1, P])(implicit trace: ZTraceElement): ZTransducer[R1, E1, I, P]

    Effectually transforms the outputs of this transducer

    Effectually transforms the outputs of this transducer

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use mapZIO

Inherited from AnyRef

Inherited from Any

Ungrouped