Object/Trait

zio.stream.ZStream

ZStreamConstructor

Related Docs: trait ZStreamConstructor | package ZStream

Permalink

object ZStreamConstructor extends ZStreamConstructorPlatformSpecific

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ZStreamConstructor
  2. ZStreamConstructorPlatformSpecific
  3. ZStreamConstructorLowPriority1
  4. ZStreamConstructorLowPriority2
  5. ZStreamConstructorLowPriority3
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type WithOut[In, Out0] = ZStreamConstructor[In] { type Out = Out0 }

    Permalink

    The type of the ZStreamConstructor with the type of the ZStream value.

    The type of the ZStreamConstructor with the type of the ZStream value.

    Definition Classes
    ZStreamConstructorLowPriority3

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 def ChunkConstructor[A]: WithOut[Chunk[A], ZStream[Any, Nothing, A]]

    Permalink

    Constructs a ZStream[Any, Nothing, A] from a Chunk[A].

    Constructs a ZStream[Any, Nothing, A] from a Chunk[A].

    Definition Classes
    ZStreamConstructorLowPriority1
  5. implicit def ChunkHubConstructor[RA, RB, EA, EB, A, B]: WithOut[ZHub[RA, RB, EA, EB, A, Chunk[B]], ZStream[RB, EB, B]]

    Permalink

    Constructs a ZStream[RB, EB, B] from a ZHub[RA, RB, EA, EB, A, Chunk[B]].

  6. implicit def ChunkQueueConstructor[RA, RB, EA, EB, A, B]: WithOut[ZQueue[RA, RB, EA, EB, A, Chunk[B]], ZStream[RB, EB, B]]

    Permalink

    Constructs a ZStream[RB, EB, B] from a ZQueue[RA, RB, EA, EB, A, Chunk[B]].

  7. implicit def ChunksConstructor[A, Collection[Element] <: Iterable[Element]]: WithOut[Collection[Chunk[A]], ZStream[Any, Nothing, A]]

    Permalink

    Constructs a ZStream[Any, Nothing, A] from an Iterable[Chunk[A]].

  8. implicit def HubConstructor[RA, RB, EA, EB, A, B]: WithOut[ZHub[RA, RB, EA, EB, A, B], ZStream[RB, EB, B]]

    Permalink

    Constructs a ZStream[RB, EB, B] from a ZHub[RA, RB, EA, EB, A, B].

    Constructs a ZStream[RB, EB, B] from a ZHub[RA, RB, EA, EB, A, B].

    Definition Classes
    ZStreamConstructorLowPriority1
  9. implicit def InputStreamConstructor[InputStreamLike <: InputStream]: WithOut[InputStreamLike, ZStream[Any, IOException, Byte]]

    Permalink

    Constructs a ZStream[Any, IOException, Byte] from a java.io.InputStream.

    Constructs a ZStream[Any, IOException, Byte] from a java.io.InputStream.

    Definition Classes
    ZStreamConstructorPlatformSpecific
  10. implicit def InputStreamManagedConstructor[R, E <: IOException, InputStreamLike <: InputStream]: WithOut[ZManaged[R, E, InputStreamLike], ZStream[R, IOException, Byte]]

    Permalink

    Constructs a ZStream[Any, IOException, Byte] from a ZManaged[R, java.io.IOException, java.io.InputStream].

    Constructs a ZStream[Any, IOException, Byte] from a ZManaged[R, java.io.IOException, java.io.InputStream].

    Definition Classes
    ZStreamConstructorPlatformSpecific
  11. implicit def InputStreamZIOConstructor[R, E <: IOException, InputStreamLike <: InputStream]: WithOut[ZIO[R, E, InputStreamLike], ZStream[R, IOException, Byte]]

    Permalink

    Constructs a ZStream[Any, IOException, Byte] from a ZIO[R, java.io.IOException, java.io.InputStream].

    Constructs a ZStream[Any, IOException, Byte] from a ZIO[R, java.io.IOException, java.io.InputStream].

    Definition Classes
    ZStreamConstructorPlatformSpecific
  12. implicit def IterableConstructor[A, Collection[Element] <: Iterable[Element]]: WithOut[Collection[A], ZStream[Any, Nothing, A]]

    Permalink

    Constructs a ZStream[Any, Nothing, A] from a Iterable[A].

    Constructs a ZStream[Any, Nothing, A] from a Iterable[A].

    Definition Classes
    ZStreamConstructorLowPriority1
  13. implicit def IterableZIOConstructor[R, E, A, Collection[Element] <: Iterable[Element]]: WithOut[ZIO[R, E, Collection[A]], ZStream[R, E, A]]

    Permalink

    Constructs a ZStream[R, E, A] from a ZIO[R, E, Iterable[A]].

  14. implicit def IteratorConstructor[A, IteratorLike[Element] <: Iterator[Element]]: WithOut[IteratorLike[A], ZStream[Any, Throwable, A]]

    Permalink

    Constructs a ZStream[Any, Throwable, A] from an Iterator[A].

  15. implicit def IteratorManagedConstructor[R, E <: Throwable, A, IteratorLike[Element] <: Iterator[Element]]: WithOut[ZManaged[R, E, IteratorLike[A]], ZStream[R, Throwable, A]]

    Permalink

    Constructs a ZStream[R, Throwable, A] from a ZManaged[R, Throwable, Iterator[A]].

  16. implicit def IteratorZIOConstructor[R, E <: Throwable, A, IteratorLike[Element] <: Iterator[Element]]: WithOut[ZIO[R, E, IteratorLike[A]], ZStream[R, Throwable, A]]

    Permalink

    Constructs a ZStream[R, Throwable, A] from a ZIO[R, Throwable, Iterator[A]].

  17. implicit def JavaIteratorConstructor[A, JavaIteratorLike[Element] <: Iterator[Element]]: WithOut[JavaIteratorLike[A], ZStream[Any, Throwable, A]]

    Permalink

    Constructs a ZStream[Any, Throwable, A] from a java.util.Iterator[A].

  18. implicit def JavaIteratorManagedConstructor[R, E <: Throwable, A, JavaIteratorLike[Element] <: Iterator[Element]]: WithOut[ZManaged[R, E, JavaIteratorLike[A]], ZStream[R, Throwable, A]]

    Permalink

    Constructs a ZStream[R, Throwable, A] from a ZManaged[R, Throwable, java.util.Iterator[A]].

  19. implicit def JavaIteratorZIOConstructor[R, E <: Throwable, A, JavaIteratorLike[Element] <: Iterator[Element]]: WithOut[ZIO[R, E, JavaIteratorLike[A]], ZStream[R, Throwable, A]]

    Permalink

    Constructs a ZStream[R, Throwable, A] from a ZIO[R, Throwable, java.util.Iterator[A]].

  20. implicit def JavaStreamConstructor[A, StreamLike[A] <: java.util.stream.Stream[A]]: WithOut[StreamLike[A], ZStream[Any, Throwable, A]]

    Permalink

    Constructs a ZStream[Any, Throwable, A] from a java.util.stream.Stream[A].

    Constructs a ZStream[Any, Throwable, A] from a java.util.stream.Stream[A].

    Definition Classes
    ZStreamConstructorPlatformSpecific
  21. implicit def JavaStreamManagedConstructor[R, E <: Throwable, A, StreamLike[A] <: java.util.stream.Stream[A]]: WithOut[ZManaged[R, E, StreamLike[A]], ZStream[R, Throwable, A]]

    Permalink

    Constructs a ZStream[Any, Throwable, A] from a ZManaged[R, Throwable, java.util.stream.Stream[A]].

    Constructs a ZStream[Any, Throwable, A] from a ZManaged[R, Throwable, java.util.stream.Stream[A]].

    Definition Classes
    ZStreamConstructorPlatformSpecific
  22. implicit def JavaStreamZIOConstructor[R, E <: Throwable, A, StreamLike[A] <: java.util.stream.Stream[A]]: WithOut[ZIO[R, E, StreamLike[A]], ZStream[R, Throwable, A]]

    Permalink

    Constructs a ZStream[Any, Throwable, A] from a ZIO[R, Throwable, java.util.stream.Stream[A]].

    Constructs a ZStream[Any, Throwable, A] from a ZIO[R, Throwable, java.util.stream.Stream[A]].

    Definition Classes
    ZStreamConstructorPlatformSpecific
  23. implicit def QueueConstructor[RA, RB, EA, EB, A, B]: WithOut[ZQueue[RA, RB, EA, EB, A, B], ZStream[RB, EB, B]]

    Permalink

    Constructs a ZStream[RB, EB, B] from a ZQueue[RA, RB, EA, EB, A, B].

    Constructs a ZStream[RB, EB, B] from a ZQueue[RA, RB, EA, EB, A, B].

    Definition Classes
    ZStreamConstructorLowPriority1
  24. implicit def ReaderConstructor[ReaderLike <: Reader]: WithOut[ReaderLike, ZStream[Any, IOException, Char]]

    Permalink

    Constructs a ZStream[Any, IOException, Char] from a java.io.Reader.

    Constructs a ZStream[Any, IOException, Char] from a java.io.Reader.

    Definition Classes
    ZStreamConstructorPlatformSpecific
  25. implicit def ReaderManagedConstructor[R, E <: IOException, ReaderLike <: Reader]: WithOut[ZManaged[R, E, ReaderLike], ZStream[R, IOException, Char]]

    Permalink

    Constructs a ZStream[Any, IOException, Char] from a ZManaged[R, java.io.IOException, java.io.Reader].

    Constructs a ZStream[Any, IOException, Char] from a ZManaged[R, java.io.IOException, java.io.Reader].

    Definition Classes
    ZStreamConstructorPlatformSpecific
  26. implicit def ReaderZIOConstructor[R, E <: IOException, ReaderLike <: Reader]: WithOut[ZIO[R, E, ReaderLike], ZStream[R, IOException, Char]]

    Permalink

    Constructs a ZStream[Any, IOException, Char] from a ZIO[R, java.io.IOException, java.io.Reader].

    Constructs a ZStream[Any, IOException, Char] from a ZIO[R, java.io.IOException, java.io.Reader].

    Definition Classes
    ZStreamConstructorPlatformSpecific
  27. implicit def ScheduleConstructor[R, A]: WithOut[Schedule[R, Any, A], ZStream[R with Has[Clock], Nothing, A]]

    Permalink

    Constructs a ZStream[R, Nothing, A] from a Schedule[R, Any, A].

  28. implicit def SucceedConstructor[A]: WithOut[A, ZStream[Any, Nothing, A]]

    Permalink

    Construct a ZStream[R, E, A] from a ZIO[R, E, A].

    Construct a ZStream[R, E, A] from a ZIO[R, E, A].

    Definition Classes
    ZStreamConstructorLowPriority3
  29. implicit def TQueueConstructor[A]: WithOut[TQueue[A], ZStream[Any, Nothing, A]]

    Permalink

    Constructs a ZStream[Any, Nothing, A] from a TQueue[A].

  30. implicit def ZIOConstructor[R, E, A]: WithOut[ZIO[R, E, A], ZStream[R, E, A]]

    Permalink

    Construct a ZStream[R, E, A] from a ZIO[R, E, A].

    Construct a ZStream[R, E, A] from a ZIO[R, E, A].

    Definition Classes
    ZStreamConstructorLowPriority2
  31. implicit def ZIOOptionConstructor[R, E, A]: WithOut[ZIO[R, Option[E], A], ZStream[R, E, A]]

    Permalink

    Construct a ZStream[R, E, A] from a ZIO[R, Option[E], A].

    Construct a ZStream[R, E, A] from a ZIO[R, Option[E], A].

    Definition Classes
    ZStreamConstructorLowPriority1
  32. implicit def ZIOOptionNoneConstructor[R, A]: WithOut[ZIO[R, None.type, A], ZStream[R, Nothing, A]]

    Permalink

    Construct a ZStream[R, E, A] from a ZIO[R, Option[E], A].

    Construct a ZStream[R, E, A] from a ZIO[R, Option[E], A].

    Definition Classes
    ZStreamConstructorLowPriority1
  33. implicit def ZIOOptionSomeConstructor[R, E, A]: WithOut[ZIO[R, Some[E], A], ZStream[R, E, A]]

    Permalink

    Construct a ZStream[R, E, A] from a ZIO[R, Option[E], A].

    Construct a ZStream[R, E, A] from a ZIO[R, Option[E], A].

    Definition Classes
    ZStreamConstructorLowPriority1
  34. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  38. def finalize(): Unit

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

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

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

    Permalink
    Definition Classes
    Any
  42. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  45. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped