Object/Trait

zio

Scope

Related Docs: trait Scope | package zio

Permalink

object Scope extends Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Scope
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Closeable extends Scope

    Permalink
  2. final class ExtendPartiallyApplied[R] extends AnyVal

    Permalink
  3. final class UsePartiallyApplied[R] extends AnyVal

    Permalink

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. def addFinalizer(finalizer: ⇒ UIO[Any])(implicit trace: Trace): ZIO[Scope, Nothing, Unit]

    Permalink

    Accesses a scope in the environment and adds a finalizer to it.

  5. def addFinalizerExit(finalizer: (Exit[Any, Any]) ⇒ UIO[Any])(implicit trace: Trace): ZIO[Scope, Nothing, Unit]

    Permalink

    Accesses a scope in the environment and adds a finalizer to it.

  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. val default: ZLayer[Any, Nothing, Scope]

    Permalink

    A layer that constructs a scope and closes it when the workflow the layer is provided to completes execution, whether by success, failure, or interruption.

    A layer that constructs a scope and closes it when the workflow the layer is provided to completes execution, whether by success, failure, or interruption. This can be used to close a scope when providing a layer to a workflow.

  9. final def eq(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. val global: Closeable

    Permalink

    The global scope which is never closed.

    The global scope which is never closed. Finalizers added to this scope will be immediately discarded and closing this scope has no effect.

  14. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  16. def make(implicit trace: Trace): UIO[Closeable]

    Permalink

    Makes a scope.

    Makes a scope. Finalizers added to this scope will be run sequentially in the reverse of the order in which they were added when this scope is closed.

  17. def makeWith(executionStrategy: ⇒ ExecutionStrategy)(implicit trace: Trace): UIO[Closeable]

    Permalink

    Makes a scope.

    Makes a scope. Finalizers added to this scope will be run according to the specified ExecutionStrategy.

  18. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  21. def parallel(implicit trace: Trace): UIO[Closeable]

    Permalink

    Makes a scope.

    Makes a scope. Finalizers added to this scope will be run in parallel when this scope is closed.

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. 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