TaskEffect

object TaskEffect extends TaskEffect
Companion
class
trait TaskTypes
class Object
trait Matchable
class Any

Type members

Inherited types

type _Task[R] = Member[[A] =>> Task[A], R]
Inherited from
TaskTypes
type _task[R] = MemberIn[[A] =>> Task[A], R]
Inherited from
TaskTypes

Value members

Inherited methods

final def asyncBoundary[R](s: Scheduler)(implicit evidence$8: _task[R]): Eff[R, Unit]
Inherited from
TaskCreation
final def asyncBoundary[R](implicit evidence$7: _task[R]): Eff[R, Unit]
Inherited from
TaskCreation
def effectInstance[R](implicit evidence$13: _Task[R], runEff: EffToTask[R], scheduler: Scheduler): Effect[[_] =>> Eff[R, _$12]]
Inherited from
TaskEffect
def forkTasks[R, A](e: Eff[R, A])(implicit task: MemberInOut[[A] =>> Task[A], R]): Eff[R, A]
Inherited from
TaskInterpretation
final def fromTask[R, A](task: Task[A], timeout: Option[FiniteDuration])(implicit evidence$1: _task[R]): Eff[R, A]
Inherited from
TaskCreation
def memoize[A](key: AnyRef, cache: Cache, task: Task[A]): Task[A]

memoize the task result using a cache

memoize the task result using a cache

Inherited from
TaskInterpretation
def retryUntil[R, A](e: Eff[R, A], condition: A => Boolean, durations: List[FiniteDuration])(implicit evidence$10: _task[R]): Eff[R, A]
Inherited from
TaskCreation
def runAsync[R, A](e: Eff[R, A])(implicit m: Aux[[A] =>> Task[A], R, NoFx]): Task[A]
Inherited from
TaskInterpretation
def runSequential[R, A](e: Eff[R, A])(implicit m: Aux[[A] =>> Task[A], R, NoFx]): Task[A]
Inherited from
TaskInterpretation
def runTaskMemo[R, U, A](cache: Cache)(effect: Eff[R, A])(implicit m: Aux[[A] =>> Memoized[A], R, U], task: MemberIn[[A] =>> Task[A], U]): Eff[U, A]
Inherited from
TaskInterpretation
final def taskAsync[R, A](callbackConsumer: Either[Throwable, A] => Unit => Unit, timeout: Option[FiniteDuration])(implicit evidence$9: _task[R]): Eff[R, A]
Inherited from
TaskCreation
def taskAttempt[R, A](e: Eff[R, A])(implicit task: MemberInOut[[A] =>> Task[A], R]): Eff[R, Either[Throwable, A]]
Inherited from
TaskInterpretation
final def taskDelay[R, A](call: => A, timeout: Option[FiniteDuration])(implicit evidence$4: _task[R]): Eff[R, A]
Inherited from
TaskCreation
final def taskFailed[R, A](t: Throwable)(implicit evidence$2: _task[R]): Eff[R, A]
Inherited from
TaskCreation
final def taskFork[R, A](call: Task[A], timeout: Option[FiniteDuration])(implicit evidence$6: _task[R]): Eff[R, A]
Inherited from
TaskCreation
final def taskForkScheduler[R, A](call: Task[A], scheduler: Scheduler, timeout: Option[FiniteDuration])(implicit evidence$5: _task[R]): Eff[R, A]
Inherited from
TaskCreation
def taskMemo[R, A](key: AnyRef, cache: Cache, e: Eff[R, A])(implicit task: MemberInOut[[A] =>> Task[A], R]): Eff[R, A]

Memoize task effects using a cache

Memoize task effects using a cache

if this method is called with the same key the previous value will be returned

Inherited from
TaskInterpretation
def taskMemoized[R, A](key: AnyRef, e: Eff[R, A])(implicit task: MemberInOut[[A] =>> Task[A], R], m: MemberIn[[A] =>> Memoized[A], R]): Eff[R, A]

Memoize task values using a memoization effect

Memoize task values using a memoization effect

if this method is called with the same key the previous value will be returned

Inherited from
TaskInterpretation
final def taskSuspend[R, A](task: => Task[Eff[R, A]], timeout: Option[FiniteDuration])(implicit evidence$3: _task[R]): Eff[R, A]
Inherited from
TaskCreation
def waitFor[R](duration: FiniteDuration)(implicit evidence$11: _task[R]): Eff[R, Unit]
Inherited from
TaskCreation

Implicits

Inherited implicits

implicit def asyncInstance[R](implicit evidence$12: _Task[R], runEff: EffToTask[R]): Async[[_] =>> Eff[R, _$10]]
Inherited from
TaskEffect
implicit val taskSequenceCached: SequenceCached[[A] =>> Task[A]]
Inherited from
TaskInterpretation