Object

zio.stream

Stream

Related Doc: package stream

Permalink

object Stream extends Stream_Functions

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

Type Members

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

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

    Permalink
    Annotations
    @implicitNotFound( ... )

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: ConformsR1[Any]

    Permalink
    Definition Classes
    StreamStream_Functions
  5. final def apply[A](as: A*): ZStream[Any, Nothing, A]

    Permalink

    Creates a pure stream from a variable list of values

    Creates a pure stream from a variable list of values

    Definition Classes
    Stream_Functions
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. final def bracket[R, E, A](acquire: ZIO[R, E, A])(release: (A) ⇒ ZIO[R, Nothing, _])(implicit arg0: ConformsR[R]): ZStream[R, E, A]

    Permalink

    Creates a stream from a single value that will get cleaned up after the stream is consumed

    Creates a stream from a single value that will get cleaned up after the stream is consumed

    Definition Classes
    Stream_Functions
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def die(ex: Throwable): ZStream[Any, Nothing, Nothing]

    Permalink

    The stream that always dies with ex.

    The stream that always dies with ex.

    Definition Classes
    Stream_Functions
  10. final def dieMessage(msg: String): ZStream[Any, Nothing, Nothing]

    Permalink

    The stream that always dies with an exception described by msg.

    The stream that always dies with an exception described by msg.

    Definition Classes
    Stream_Functions
  11. final val empty: ZStream[Any, Nothing, Nothing]

    Permalink

    The empty stream

    The empty stream

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

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

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

    Permalink

    The stream that always fails with error

    The stream that always fails with error

    Definition Classes
    Stream_Functions
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def finalizer[R](finalizer: ZIO[R, Nothing, _])(implicit arg0: ConformsR[R]): ZStream[R, Nothing, Nothing]

    Permalink

    Creates a stream that emits no elements, never fails and executes the finalizer before it ends.

    Creates a stream that emits no elements, never fails and executes the finalizer before it ends.

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

    Permalink

    Flattens nested streams.

    Flattens nested streams.

    Definition Classes
    Stream_Functions
  18. final def flattenPar[R, E, A](n: Long, outputBuffer: Int = 16)(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 executing a non-deterministic concurrent merge.

    Flattens a stream of streams into a stream by executing a non-deterministic concurrent merge. Up to n streams may be consumed in parallel and up to outputBuffer elements may be buffered by this operator.

    Definition Classes
    Stream_Functions
  19. final def fromChunk[A](c: Chunk[A]): ZStream[Any, Nothing, A]

    Permalink

    Creates a stream from a zio.Chunk of values

    Creates a stream from a zio.Chunk of values

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

    Permalink

    Creates a stream from an effect producing a value of type A

    Creates a stream from an effect producing a value of type A

    Definition Classes
    Stream_Functions
  21. final def fromIterable[A](as: Iterable[A]): ZStream[Any, Nothing, A]

    Permalink

    Creates a stream from an iterable collection of values

    Creates a stream from an iterable collection of values

    Definition Classes
    Stream_Functions
  22. final def fromQueue[R, E, A](queue: ZQueue[_, _, R, E, _, A])(implicit arg0: ConformsR[R]): ZStream[R, E, A]

    Permalink

    Creates a stream from a zio.ZQueue of values

    Creates a stream from a zio.ZQueue of values

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def halt[E](cause: Cause[E]): ZStream[Any, E, Nothing]

    Permalink

    The stream that always halts with cause.

    The stream that always halts with cause.

    Definition Classes
    Stream_Functions
  25. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  27. final def managed[R, E, A](managed: ZManaged[R, E, A])(implicit arg0: ConformsR[R]): ZStream[R, E, A]

    Permalink

    Creates a single-valued stream from a managed resource

    Creates a single-valued stream from a managed resource

    Definition Classes
    Stream_Functions
  28. final def mergeAll[R, E, A](n: Long, outputBuffer: Int = 16)(streams: ZStream[R, E, A]*)(implicit arg0: ConformsR[R]): ZStream[R, E, A]

    Permalink

    Merges a variable list of streams in a non-deterministic fashion.

    Merges a variable list of streams in a non-deterministic fashion. Up to n streams may be consumed in parallel and up to outputBuffer elements may be buffered by this operator.

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

    Permalink
    Definition Classes
    AnyRef
  30. final val never: ZStream[Any, Nothing, Nothing]

    Permalink

    The stream that never produces any value or fails with any error.

    The stream that never produces any value or fails with any error.

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

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

    Permalink
    Definition Classes
    AnyRef
  33. 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
  34. final def succeed[A](a: A): ZStream[Any, Nothing, A]

    Permalink

    Creates a single-valued pure stream

    Creates a single-valued pure stream

    Definition Classes
    Stream_Functions
  35. final def succeedLazy[A](a: ⇒ A): ZStream[Any, Nothing, A]

    Permalink

    Creates a single, lazily-evaluated-valued pure stream

    Creates a single, lazily-evaluated-valued pure stream

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

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

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

    Permalink

    Creates a stream by peeling off the "layers" of a value of type S

    Creates a stream by peeling off the "layers" of a value of type S

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

    Permalink

    Creates a stream by effectfully peeling off the "layers" of a value of type S

    Creates a stream by effectfully peeling off the "layers" of a value of type S

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

    Permalink

    Creates a stream produced from an effect

    Creates a stream produced from an effect

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

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

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

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

Inherited from Stream_Functions

Inherited from AnyRef

Inherited from Any

Ungrouped