Packages

trait TaskLift[F[_]] extends ~>[Task, F]

A lawless type class that specifies conversions from Task to similar data types (i.e. pure, asynchronous, preferably cancelable).

Annotations
@implicitNotFound("""Cannot find implicit value for TaskLift[${F}].
Building this implicit value might depend on having an implicit
s.c.ExecutionContext in scope, a Scheduler or some equivalent type."""
)
Source
TaskLift.scala
Linear Supertypes
FunctionK[Task, F], Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TaskLift
  2. FunctionK
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply[A](task: Task[A]): F[A]

    Converts Task[A] into F[A].

    Converts Task[A] into F[A].

    The operation should preserve referential transparency and if possible runtime characteristics (e.g. the result should not block threads if the source doesn't) and interruptibility (although this isn't possible for conversions to cats.effect.Async data types that are not also Concurrent).

    Definition Classes
    TaskLift → FunctionK

Concrete Value Members

  1. def and[H[_]](h: FunctionK[Task, H]): FunctionK[Task, [γ$4$]Tuple2K[F, H, γ$4$]]
    Definition Classes
    FunctionK
  2. def andThen[H[_]](f: FunctionK[F, H]): FunctionK[Task, H]
    Definition Classes
    FunctionK
  3. def compose[E[_]](f: FunctionK[E, Task]): FunctionK[E, F]
    Definition Classes
    FunctionK
  4. def or[H[_]](h: FunctionK[H, F]): FunctionK[[γ$1$]EitherK[Task, H, γ$1$], F]
    Definition Classes
    FunctionK