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]): 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]): 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): ZTransducer[R, E, J, O]

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

    Permalink
  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): ZTransducer[R, E, I, O]

    Permalink

    Filters the outputs of this transducer.

  13. def finalize(): Unit

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

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

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

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

    Permalink

    Transforms the outputs of this transducer.

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

    Permalink

    Transforms the chunks emitted by this transducer.

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

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

    Permalink

    Transforms the outputs of this transducer.

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped