Class

monix.eval.Coeval

DeprecatedExtensions

Related Doc: package Coeval

Permalink

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

Deprecated operations, described as extension methods.

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])

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  6. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  7. val self: Coeval[A]

    Permalink
    Definition Classes
    DeprecatedExtensions → Extensions
  8. def toString(): String

    Permalink
    Definition Classes
    Any

Deprecated Value Members

  1. final def task: Task[A]

    Permalink

    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]

    Permalink

    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]

    Permalink

    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