TaskInterpretation

Companion
class
trait TaskTypes
class Object
trait Matchable
class Any

Type members

Inherited types

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

Value members

Inherited methods

def forkTasks[R, A](e: Eff[R, A])(implicit task: MemberInOut[Task, R]): Eff[R, A]
Inherited from
TaskInterpretation
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 runAsync[R, A](e: Eff[R, A])(implicit m: Aux[Task, R, NoFx]): Task[A]
Inherited from
TaskInterpretation
def runSequential[R, A](e: Eff[R, A])(implicit m: Aux[Task, R, NoFx]): Task[A]
Inherited from
TaskInterpretation
def runTaskMemo[R, U, A](cache: Cache)(effect: Eff[R, A])(implicit m: Aux[Memoized, R, U], task: MemberIn[Task, U]): Eff[U, A]
Inherited from
TaskInterpretation
def taskAttempt[R, A](e: Eff[R, A])(implicit task: MemberInOut[Task, R]): Eff[R, Either[Throwable, A]]
Inherited from
TaskInterpretation
def taskMemo[R, A](key: AnyRef, cache: Cache, e: Eff[R, A])(implicit task: MemberInOut[Task, 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[Task, R], m: MemberIn[Memoized, 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

Implicits

Inherited implicits

implicit
val taskSequenceCached: SequenceCached[Task]
Inherited from
TaskInterpretation