TaskLike

object TaskLike extends TaskLikeImplicits0
Companion
class
class TaskLikeImplicits0
class TaskLikeImplicits1
class TaskLikeImplicits2
class Object
trait Matchable
class Any

Type members

Classlikes

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[_]](F: TaskLike[F]): TaskLike[F]

Returns the available instance for F.

Returns the available instance for F.

Implicits

Implicits

implicit val fromCancelablePromise: TaskLike[[A] =>> CancelablePromise[A]]

Converts monix.execution.CancelablePromise to Task.

Converts monix.execution.CancelablePromise to Task.

implicit val fromCoeval: TaskLike[[A] =>> Coeval[A]]

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[[A] =>> Eval[A]]

Converts to Task from cats.effect.Eval.

Converts to Task from cats.effect.Eval.

implicit val fromFunction0: TaskLike[[R] =>> () => R]

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

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

implicit val fromFuture: TaskLike[[T] =>> Future[T]]

Converts to Task from scala.concurrent.Future.

Converts to Task from scala.concurrent.Future.

implicit val fromIO: TaskLike[[A] =>> IO[A]]

Converts to Task from cats.effect.IO.

Converts to Task from cats.effect.IO.

implicit val fromSyncIO: TaskLike[[A] =>> SyncIO[A]]

Converts to Task from a cats.effect.SyncIO.

Converts to Task from a cats.effect.SyncIO.

implicit val fromTask: TaskLike[[A] =>> Task[A]]

Instance for Task, returning same reference.

Instance for Task, returning same reference.

implicit val fromTry: TaskLike[[T] =>> Try[T]]

Converts scala.util.Try to Task.

Converts scala.util.Try to Task.

Inherited implicits

implicit def fromAnyFutureViaLift[F[_]](F: FutureLift[[A] =>> Task[A], 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[_]](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[_]](F: Effect[F]): TaskLike[F]

Converts to Task from cats.effect.Async.

Converts to Task from cats.effect.Async.

Inherited from
TaskLikeImplicits1