Packages

c

monix.eval.Coeval

DeprecatedExtensions

implicit final class DeprecatedExtensions[+A] extends AnyVal with Extensions[A]

Deprecated operations, described as extension methods.

Source
Coeval.scala
Linear Supertypes
Extensions[A], AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DeprecatedExtensions
  2. Extensions
  3. AnyVal
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DeprecatedExtensions(self: Coeval[A])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  6. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  7. val self: Coeval[A]
    Definition Classes
    DeprecatedExtensions → Extensions
  8. def toString(): String
    Definition Classes
    Any

Deprecated Value Members

  1. final def task: Task[A]

    DEPRECATED — Converts the source Coeval into a Task.

    DEPRECATED — Converts the source Coeval into a Task.

    Please switch to Coeval.to:

    import monix.eval._
    
    val value = Coeval { 1 + 1 }
    
    val result: Task[Int] = value.to[Task]
    Definition Classes
    Extensions
    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0) Use value.to[Task]

  2. final def toEval: Eval[A]

    DEPRECATED — Converts the source Coeval into a cats.Eval.

    DEPRECATED — Converts the source Coeval into a cats.Eval.

    Please switch to Coeval.to:

    import cats.Eval
    import monix.eval._
    
    val value = Coeval { 1 + 1 }
    
    val result: Eval[Int] = value.to[Eval]
    Definition Classes
    Extensions
    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0) Use value.to[Eval]

  3. final def toIO: IO[A]

    DEPRECATED — Converts the source Coeval into a cats.effect.IO.

    DEPRECATED — Converts the source Coeval into a cats.effect.IO.

    Please switch to Coeval.to:

    import cats.effect.IO
    import monix.eval._
    
    val value = Coeval { 1 + 1 }
    
    val result: IO[Int] = value.to[IO]
    Definition Classes
    Extensions
    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0) Use value.to[IO]

Inherited from Extensions[A]

Inherited from AnyVal

Inherited from Any

Ungrouped