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. 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)))
  2. 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)))
  3. 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
  4. 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
  5. 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
  6. 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
  7. 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.

  8. 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.

  9. 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.

  10. 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.