Packages

object FutureLift extends FutureLiftForPlatform with Serializable

Source
FutureLift.scala
Linear Supertypes
Serializable, FutureLiftForPlatform, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FutureLift
  2. Serializable
  3. FutureLiftForPlatform
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. implicit class Deprecated[F[_], Future[_]] extends AnyRef

    Deprecated method, which happened on extending FunctionK.

  2. type Lambda[F[_], Future[_], A] = F[Future[A]]
  3. trait Syntax[F[_], Future[_], A] extends Any

    Provides extension methods when imported in scope via syntax.

    Provides extension methods when imported in scope via syntax.

    import monix.catnap.syntax._

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[F[_], Future[_]](implicit F: FutureLift[F, Future]): FutureLift[F, Future]

    Accessor for FutureLift values that are in scope.

    Accessor for FutureLift values that are in scope.

    import cats.effect.IO
    import scala.concurrent.Future
    import scala.concurrent.ExecutionContext.Implicits.global
    
    val F = FutureLift[IO, Future]
    
    val task: IO[Int] = F.apply(IO(Future(1 + 1)))
  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() @HotSpotIntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def from[F[_], Future[_], A](fa: F[Future[A]])(implicit F: FutureLift[F, Future]): F[A]

    Applies FutureLift.apply to the given parameter.

    Applies FutureLift.apply to the given parameter.

    import cats.effect.IO
    import scala.concurrent.Future
    import scala.concurrent.ExecutionContext.Implicits.global
    
    val ioa = FutureLift.from(IO(Future(1 + 1)))
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. implicit def javaCompletableLiftForConcurrentOrAsync[F[_]](implicit F: OrElse[Concurrent[F], Async[F]]): FutureLift[F, CompletableFuture]

    Implicit instance of FutureLift for converting from java.util.concurrent.CompletableFuture to any Concurrent or Async data type.

    Implicit instance of FutureLift for converting from java.util.concurrent.CompletableFuture to any Concurrent or Async data type.

    Definition Classes
    FutureLiftForPlatform
  14. def javaCompletableToAsync[F[_], A](fa: F[CompletableFuture[A]])(implicit F: Async[F]): F[A]

    Lifts Java's java.util.concurrent.CompletableFuture to any data type implementing cats.effect.Async.

    Lifts Java's java.util.concurrent.CompletableFuture to any data type implementing cats.effect.Async.

    Definition Classes
    FutureLiftForPlatform
  15. def javaCompletableToConcurrent[F[_], A](fa: F[CompletableFuture[A]])(implicit F: Concurrent[F]): F[A]

    Lifts Java's java.util.concurrent.CompletableFuture to any data type implementing cats.effect.Concurrent.

    Lifts Java's java.util.concurrent.CompletableFuture to any data type implementing cats.effect.Concurrent.

    Definition Classes
    FutureLiftForPlatform
  16. def javaCompletableToConcurrentOrAsync[F[_], A](fa: F[CompletableFuture[A]])(implicit F: OrElse[Concurrent[F], Async[F]]): F[A]

    A generic function that subsumes both javaCompletableToConcurrent and javaCompletableToAsync.

    A generic function that subsumes both javaCompletableToConcurrent and javaCompletableToAsync.

    Definition Classes
    FutureLiftForPlatform
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. implicit def scalaFutureLiftForConcurrentOrAsync[F[_], MF[T] <: Future[T]](implicit F: OrElse[Concurrent[F], Async[F]]): FutureLift[F, MF]

    Implicit instance of FutureLift for converting from scala.concurrent.Future or monix.execution.CancelableFuture to any Concurrent or Async data type.

  21. def scalaToAsync[F[_], MF[T] <: Future[T], A](fa: F[MF[A]])(implicit F: Async[F]): F[A]

    Utility for converting Future values into data types that implement cats.effect.Async.

    Utility for converting Future values into data types that implement cats.effect.Async.

    N.B. the implementation discriminates CancelableFuture via sub-typing, and if the given future is cancelable, then the resulting instance is also cancelable.

  22. def scalaToConcurrent[F[_], MF[T] <: Future[T], A](fa: F[MF[A]])(implicit F: Concurrent[F]): F[A]

    Utility for converting Future values into data types that implement cats.effect.Concurrent.

    Utility for converting Future values into data types that implement cats.effect.Concurrent.

    N.B. the implementation discriminates CancelableFuture via sub-typing, and if the given future is cancelable, then the resulting instance is also cancelable.

  23. def scalaToConcurrentOrAsync[F[_], MF[T] <: Future[T], A](fa: F[MF[A]])(implicit F: OrElse[Concurrent[F], Async[F]]): F[A]

    A generic function that subsumes both scalaToAsync and scalaToConcurrent.

    A generic function that subsumes both scalaToAsync and scalaToConcurrent.

    N.B. this works with monix.execution.CancelableFuture if the given Future is such an instance.

  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. 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 Serializable

Inherited from FutureLiftForPlatform

Inherited from AnyRef

Inherited from Any

Ungrouped