Class/Object

zio

ZEnvironment

Related Docs: object ZEnvironment | package zio

Permalink

final class ZEnvironment[+R] extends Serializable

Self Type
ZEnvironment[R]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ZEnvironment
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++[R1](that: ZEnvironment[R1])(implicit arg0: zio.Tag[R1]): ZEnvironment[R with R1]

    Permalink
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. def add[A](a: A)(implicit ev: IsNotIntersection[A], tagged: zio.Tag[A]): ZEnvironment[R with A]

    Permalink

    Adds a service to the environment.

  6. final def asInstanceOf[T0]: T0

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

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

    Permalink
    Definition Classes
    AnyRef
  9. def equals(that: Any): Boolean

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def get[A >: R](implicit ev: IsNotIntersection[A], tagged: zio.Tag[A]): A

    Permalink

    Retrieves a service from the environment.

  12. def getAt[K, V](k: K)(implicit ev: <:<[R, Map[K, V]], tagged: zio.Tag[Map[K, V]]): Option[V]

    Permalink

    Retrieves a service from the environment corresponding to the specified key.

  13. final def getClass(): Class[_]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  19. def prune[R1 >: R](implicit tagged: zio.Tag[R1]): ZEnvironment[R1]

    Permalink

    Prunes the environment to the set of services statically known to be contained within it.

  20. def size: Int

    Permalink

    The size of the environment, which is the number of services contained in the environment.

    The size of the environment, which is the number of services contained in the environment. This is intended primarily for testing purposes.

  21. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    ZEnvironment → AnyRef → Any
  23. def union[R1](that: ZEnvironment[R1])(implicit arg0: zio.Tag[R1]): ZEnvironment[R with R1]

    Permalink

    Combines this environment with the specified environment.

  24. def unionAll[R1](that: ZEnvironment[R1]): ZEnvironment[R with R1]

    Permalink

    Combines this environment with the specified environment.

    Combines this environment with the specified environment. In the event of service collisions, which may not be reflected in statically known types, the right hand side will be preferred.

  25. def unsafeGet[A](tag: zio.LightTypeTag): A

    Permalink
  26. def upcast[R1](implicit ev: <:<[R, R1]): ZEnvironment[R1]

    Permalink
  27. def update[A >: R](f: (A) ⇒ A)(implicit arg0: zio.Tag[A], arg1: IsNotIntersection[A]): ZEnvironment[R]

    Permalink

    Updates a service in the environment.

  28. def updateAt[K, V](k: K)(f: (V) ⇒ V)(implicit ev: <:<[R, Map[K, V]], tag: zio.Tag[Map[K, V]]): ZEnvironment[R]

    Permalink

    Updates a service in the environment correponding to the specified key.

  29. final def wait(): Unit

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

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped