ZStreamConstructor

zio.stream.ZStream.ZStreamConstructor
See theZStreamConstructor companion object
trait ZStreamConstructor[Input]

A ZStreamConstructor[Input] knows how to construct a ZStream value from an input of type Input. This allows the type of the ZStream value constructed to depend on Input.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Type members

Types

type Out

The type of the ZStream value.

The type of the ZStream value.

Attributes

Value members

Abstract methods

def make(input: => Input)(implicit trace: Trace): Out

Constructs a ZStream value from the specified input.

Constructs a ZStream value from the specified input.

Attributes