object Scoped extends ScopedInstances

Linear Supertypes
ScopedInstances, ScopedInstances0, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Scoped
  2. ScopedInstances
  3. ScopedInstances0
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type Blocking

    type tag for blocking scopes

  2. abstract type Calculation

    type tag for resource-consuming calculations

  3. final class Local[C] extends AnyVal
  4. abstract type Main

    type tag for the main scope

  5. final class Make[Tag, F[_]] extends AnyVal
  6. abstract class Maker[Tag, F[_], Arbitrary] extends Scoped[Tag, F]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[Tag, F[_]](implicit sc: Scoped[Tag, F]): Scoped[Tag, F]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  11. implicit final def interopCE2[Tag, F[_]](implicit carrier: ScopedCarrier2[Tag, F]): ScopedExecute[Tag, F]
    Definition Classes
    ScopedInstances0
  12. implicit final def interopCE3[Tag, F[_]](implicit carrier: ScopedCarrier3[Tag, F]): ScopedExecute[Tag, F]
    Definition Classes
    ScopedInstances
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def local[C]: Local[C]

    could be used to define scopes with modified environment

    could be used to define scopes with modified environment

    case class MyContext(field: Field, ...) val newField:
    Field = ??? type My[+A] = Env[MyContext, A] type Updated implicit val myScoped: Scoped[Updated, My] =
    Scoped.local[MyContext](_.copy(field = newField))
  15. def make[Tag, F[_]]: Make[Tag, F]

    a helper for creating new instances of Scoped

    a helper for creating new instances of Scoped

    val instance: Scoped[Tag, F] = Scoped.make[Tag, F](fa => ...)
  16. final macro def makeExecuteCE2[Tag, F[_]](p1: ExecutionContext): ScopedExecute[Tag, F]

    make ScopedExecute instance with given tag using cats-effect2 hidden implicits are: Async[F], ContextShift[F]

    make ScopedExecute instance with given tag using cats-effect2 hidden implicits are: Async[F], ContextShift[F]

    Definition Classes
    ScopedInstances
  17. final macro def makeExecuteCE3[Tag, F[_]](p1: ExecutionContext): ScopedExecute[Tag, F]

    make ScopedExecute instance with given tag using cats-effect3 hidden implicit is Async[F]

    make ScopedExecute instance with given tag using cats-effect3 hidden implicit is Async[F]

    Definition Classes
    ScopedInstances
  18. def mid[Tag, U[_[_]], F[_]](implicit U: PureK[U], F: Scoped[Tag, F]): U[[β$2$]Mid[F, β$2$]]

    helpful method to create middleware that executes all proceses in the given scope

  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from ScopedInstances

Inherited from ScopedInstances0

Inherited from AnyRef

Inherited from Any

Ungrouped