Object/Trait

scalaz.zio.stream

ZStream

Related Docs: trait ZStream | package stream

Permalink

object ZStream extends Stream_Functions

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ZStream
  2. Stream_Functions
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type ConformsR[A] = ConformsR1[A]

    Permalink
    Definition Classes
    ZStreamStream_Functions
  2. sealed trait ConformsR1[A] extends AnyRef

    Permalink
  3. type Fold[R, E, +A, S] = ZIO[R, Nothing, (S, (S) ⇒ Boolean, (S, A) ⇒ ZIO[R, E, S]) ⇒ ZIO[R, E, S]]

    Permalink
  4. implicit final class unTake[-R, +E, +A] extends AnyVal

    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. implicit val ConformsAnyProof: ConformsR[Any]

    Permalink
    Definition Classes
    ZStreamStream_Functions
  5. implicit def ConformsRProof[A]: ConformsR[A]

    Permalink
  6. final def apply[A](as: A*): Stream[Nothing, A]

    Permalink
    Definition Classes
    Stream_Functions
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. final def bracket[R, E, A, B](acquire: ZIO[R, E, A])(release: (A) ⇒ UIO[Unit])(read: (A) ⇒ ZIO[R, E, Option[B]])(implicit arg0: ConformsR[R]): ZStream[R, E, B]

    Permalink

    Constructs a stream from a resource that must be acquired and released.

    Constructs a stream from a resource that must be acquired and released.

    Definition Classes
    Stream_Functions
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final val empty: Stream[Nothing, Nothing]

    Permalink

    Returns the empty stream.

    Returns the empty stream.

    Definition Classes
    Stream_Functions
  11. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def fail[E](error: E): Stream[E, Nothing]

    Permalink

    Constructs a stream that fails without emitting any values.

    Constructs a stream that fails without emitting any values.

    Definition Classes
    Stream_Functions
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def flatten[R, E, A](fa: ZStream[R, E, ZStream[R, E, A]])(implicit arg0: ConformsR[R]): ZStream[R, E, A]

    Permalink

    Flattens a stream of streams into a stream, by concatenating all the substreams.

    Flattens a stream of streams into a stream, by concatenating all the substreams.

    Definition Classes
    Stream_Functions
  16. final def fromChunk[A](c: Chunk[A]): Stream[Nothing, A]

    Permalink
    Definition Classes
    Stream_Functions
  17. final def fromEffect[R, E, A](fa: ZIO[R, E, A])(implicit arg0: ConformsR[R]): ZStream[R, E, A]

    Permalink

    Lifts an effect producing an A into a stream producing that A.

    Lifts an effect producing an A into a stream producing that A.

    Definition Classes
    Stream_Functions
  18. final def fromIterable[A](it: Iterable[A]): Stream[Nothing, A]

    Permalink

    Constructs a pure stream from the specified Iterable.

    Constructs a pure stream from the specified Iterable.

    Definition Classes
    Stream_Functions
  19. final def fromQueue[RB, EB, B](queue: ZQueue[_, _, RB, EB, _, B])(implicit arg0: ConformsR[RB]): ZStream[RB, EB, B]

    Permalink
    Definition Classes
    Stream_Functions
  20. final def fromQueue[A](queue: Queue[A]): Stream[Nothing, A]

    Permalink

    Constructs an infinite stream from a ZQueue.

    Constructs an infinite stream from a ZQueue.

    Definition Classes
    Stream_Functions
  21. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  24. final def managed[R, E, A, B](m: ZManaged[R, E, A])(read: (A) ⇒ ZIO[R, E, Option[B]])(implicit arg0: ConformsR[R]): ZStream[R, E, B]

    Permalink
    Definition Classes
    Stream_Functions
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final val never: Stream[Nothing, Nothing]

    Permalink

    Returns a stream that emits nothing and never ends.

    Returns a stream that emits nothing and never ends.

    Definition Classes
    Stream_Functions
  27. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  29. final def range(min: Int, max: Int): Stream[Nothing, Int]

    Permalink

    Constructs a stream from a range of integers (inclusive).

    Constructs a stream from a range of integers (inclusive).

    Definition Classes
    Stream_Functions
  30. final def succeed[A](a: A): Stream[Nothing, A]

    Permalink

    Constructs a singleton stream from a strict value.

    Constructs a singleton stream from a strict value.

    Definition Classes
    Stream_Functions
  31. final def succeedLazy[A](a: ⇒ A): Stream[Nothing, A]

    Permalink

    Constructs a singleton stream from a lazy value.

    Constructs a singleton stream from a lazy value.

    Definition Classes
    Stream_Functions
  32. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  34. final def unfold[S, A](s: S)(f0: (S) ⇒ Option[(A, S)]): Stream[Nothing, A]

    Permalink

    Constructs a stream from state.

    Constructs a stream from state.

    Definition Classes
    Stream_Functions
  35. final def unfoldM[R, S, E, A](s: S)(f0: (S) ⇒ ZIO[R, E, Option[(A, S)]])(implicit arg0: ConformsR[R]): ZStream[R, E, A]

    Permalink

    Constructs a stream from effectful state.

    Constructs a stream from effectful state. This method should not be used for resources that require safe release. See Stream.fromResource.

    Definition Classes
    Stream_Functions
  36. final def unwrap[R, E, A](stream: ZIO[R, E, ZStream[R, E, A]])(implicit arg0: ConformsR[R]): ZStream[R, E, A]

    Permalink

    Unwraps a stream wrapped inside of an IO value.

    Unwraps a stream wrapped inside of an IO value.

    Definition Classes
    Stream_Functions
  37. final def wait(): Unit

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

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

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

Inherited from Stream_Functions

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped