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 ChannelConstructor[R, E, A]: WithOut[ZChannel[R, Any, Any, Any, E, Chunk[A], Any], ZStream[R, E, A]]

    Permalink

    Constructs a ZStream[R, E, A] from a zio.stream.ZChannel

  5. 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
  6. implicit def ChunkHubConstructor[A]: WithOut[Hub[Chunk[A]], ZStream[Any, Nothing, A]]

    Permalink

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

  7. implicit def ChunkQueueConstructor[A]: WithOut[Queue[Chunk[A]], ZStream[Any, Nothing, A]]

    Permalink

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

  8. 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]].

  9. implicit def HubConstructor[A]: WithOut[Hub[A], ZStream[Any, Nothing, A]]

    Permalink

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

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

    Definition Classes
    ZStreamConstructorLowPriority1
  10. 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
  11. 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]].

  12. 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].

  13. implicit def IteratorScopedConstructor[R, E <: Throwable, A, IteratorLike[Element] <: Iterator[Element]]: WithOut[ZIO[Scope with R, E, IteratorLike[A]], ZStream[R, Throwable, A]]

    Permalink

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

  14. 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]].

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

    Permalink

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

  16. implicit def JavaIteratorScopedConstructor[R, E <: Throwable, A, JaveIteratorLike[Element] <: Iterator[Element]]: WithOut[ZIO[Scope with R, E, JaveIteratorLike[A]], ZStream[R, Throwable, A]]

    Permalink

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

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

    Permalink

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

  18. implicit def QueueConstructor[A]: WithOut[Queue[A], ZStream[Any, Nothing, A]]

    Permalink

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

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

    Definition Classes
    ZStreamConstructorLowPriority1
  19. implicit def ScheduleConstructor[R, A]: WithOut[Schedule[R, Any, A], ZStream[R, Nothing, A]]

    Permalink

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

  20. 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
  21. implicit def TQueueConstructor[A]: WithOut[TQueue[A], ZStream[Any, Nothing, A]]

    Permalink

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

  22. 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
  23. 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
  24. 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
  25. 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
  26. final def asInstanceOf[T0]: T0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped