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 ==(arg0: Any): Boolean

    Permalink
    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]

    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.

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

    Permalink

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

  6. final def asInstanceOf[T0]: T0

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

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

    Permalink

    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]

    Permalink

    Effectually transforms the inputs of this transducer

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

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

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

    Permalink

    Filters the outputs of this transducer.

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

    Permalink

    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]

    Permalink

    Effectually filters the inputs of this transducer.

  15. def finalize(): Unit

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

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

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

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

    Permalink

    Transforms the outputs of this transducer.

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

    Permalink

    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]

    Permalink

    Effectfully transforms the chunks emitted by this transducer.

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

    Permalink

    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]

    Permalink

    Effectually transforms the outputs of this transducer

  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. val push: ZManaged[R, Nothing, (Option[Chunk[I]]) ⇒ ZIO[R, E, Chunk[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( ... )

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]

    Permalink

    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]

    Permalink

    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]

    Permalink

    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]

    Permalink

    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