Packages

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

A lawless type class that provides conversions to Task.

Sample:

// Conversion from cats.Eval
import cats.Eval

val source0 = Eval.always(1 + 1)
val task0 = TaskLike[Eval].apply(source0)

// Conversion from Future
import scala.concurrent.Future

val source1 = Future.successful(1 + 1)
val task1 = TaskLike[Future].apply(source1)

// Conversion from IO
import cats.effect.IO

val source2 = IO(1 + 1)
val task2 = TaskLike[IO].apply(source2)

This is an alternative to usage of cats.effect.Effect where the internals are specialized to Task anyway, like for example the implementation of monix.reactive.Observable.

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

Abstract Value Members

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

    Converts from F[A] to Task[A], preserving referential transparency if F[_] is a pure data type and preserving interruptibility if the source is cancelable.

    Converts from F[A] to Task[A], preserving referential transparency if F[_] is a pure data type and preserving interruptibility if the source is cancelable.

    Definition Classes
    TaskLike → FunctionK

Concrete Value Members

  1. def and[H[_]](h: FunctionK[F, H]): FunctionK[F, [γ$2$]Tuple2K[Task, H, γ$2$]]
    Definition Classes
    FunctionK
  2. def andThen[H[_]](f: FunctionK[Task, H]): FunctionK[F, H]
    Definition Classes
    FunctionK
  3. def compose[E[_]](f: FunctionK[E, F]): FunctionK[E, Task]
    Definition Classes
    FunctionK
  4. def narrow[F0[x] <: F[x]]: FunctionK[F0, Task]
    Definition Classes
    FunctionK
  5. def or[H[_]](h: FunctionK[H, Task]): FunctionK[[γ$0$]EitherK[F, H, γ$0$], Task]
    Definition Classes
    FunctionK
  6. def widen[G0[x] >: Task[x]]: FunctionK[F, G0]
    Definition Classes
    FunctionK