ZManagedConstructor

zio.managed.ZManaged.ZManagedConstructor
See theZManagedConstructor companion object
sealed trait ZManagedConstructor[Input]

A ZManagedConstructor[Input] knows how to construct a ZManaged value from an input of type Input. This allows the type of the ZManaged 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 ZManaged value.

The type of the ZManaged value.

Attributes

Value members

Abstract methods

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

Constructs a ZManaged value from the specified input.

Constructs a ZManaged value from the specified input.

Attributes