TaskLike

object TaskLike
Companion:
class
class Object
trait Matchable
class Any

Type members

Classlikes

implicit class Deprecated[F[_]](val inst: TaskLike[F])

Deprecated method, which happened on extending FunctionK.

Deprecated method, which happened on extending FunctionK.

Value members

Concrete methods

def apply[F[_]](implicit F: TaskLike[F]): TaskLike[F]

Returns the available instance for F.

Returns the available instance for F.

Implicits

Implicits

final implicit def Deprecated[F[_]](inst: TaskLike[F]): Deprecated[F]

Deprecated method, which happened on extending FunctionK.

Deprecated method, which happened on extending FunctionK.

implicit val fromCancelablePromise: TaskLike[CancelablePromise]

Converts monix.execution.CancelablePromise to Task.

Converts monix.execution.CancelablePromise to Task.

implicit val fromCoeval: TaskLike[Coeval]

Converts to Task from Coeval.

Converts to Task from Coeval.

implicit def fromEither[E <: Throwable]: TaskLike[[_] =>> Either[E, _$3]]

Converts a Scala Either to a Task.

Converts a Scala Either to a Task.

implicit val fromEval: TaskLike[Eval]

Converts to Task from cats.effect.Eval.

Converts to Task from cats.effect.Eval.

Converts Function0 (parameter-less function, also called thunks) to Task.

Converts Function0 (parameter-less function, also called thunks) to Task.

implicit val fromFuture: TaskLike[Future]

Converts to Task from scala.concurrent.Future.

Converts to Task from scala.concurrent.Future.

implicit val fromIO: TaskLike[IO]

Converts to Task from cats.effect.IO.

Converts to Task from cats.effect.IO.

implicit val fromSyncIO: TaskLike[SyncIO]

Converts to Task from a cats.effect.SyncIO.

Converts to Task from a cats.effect.SyncIO.

implicit val fromTask: TaskLike[Task]

Instance for Task, returning same reference.

Instance for Task, returning same reference.

implicit val fromTry: TaskLike[Try]

Converts scala.util.Try to Task.

Converts scala.util.Try to Task.

Inherited implicits

implicit def fromAnyFutureViaLift[F[_]](implicit F: FutureLift[Task, F]): TaskLike[F]

Converts from any Future-like type, via monix.catnap.FutureLift.

Converts from any Future-like type, via monix.catnap.FutureLift.

Inherited from:
TaskLikeImplicits2
implicit def fromConcurrentEffect[F[_]](implicit F: ConcurrentEffect[F]): TaskLike[F]

Converts to Task from cats.effect.ConcurrentEffect.

Converts to Task from cats.effect.ConcurrentEffect.

Inherited from:
TaskLikeImplicits0
implicit def fromEffect[F[_]](implicit F: Effect[F]): TaskLike[F]

Converts to Task from cats.effect.Async.

Converts to Task from cats.effect.Async.

Inherited from:
TaskLikeImplicits1