TaskEffect

object TaskEffect extends TaskEffect
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

final
def asyncBoundary[R : _task](s: Scheduler): Eff[R, Unit]
Inherited from
TaskCreation
final
def asyncBoundary[R : _task]: Eff[R, Unit]
Inherited from
TaskCreation
def effectInstance[R : _Task](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[Task, R]): Eff[R, A]
Inherited from
TaskInterpretation
final
def fromTask[R : _task, A](task: Task[A], timeout: Option[FiniteDuration]): 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 : _task, A](e: Eff[R, A], condition: A => Boolean, durations: List[FiniteDuration]): Eff[R, A]
Inherited from
TaskCreation
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
final
def taskAsync[R : _task, A](callbackConsumer: Either[Throwable, A] => Unit => Unit, timeout: Option[FiniteDuration]): Eff[R, A]
Inherited from
TaskCreation
def taskAttempt[R, A](e: Eff[R, A])(implicit task: MemberInOut[Task, R]): Eff[R, Either[Throwable, A]]
Inherited from
TaskInterpretation
final
def taskDelay[R : _task, A](call: => A, timeout: Option[FiniteDuration]): Eff[R, A]
Inherited from
TaskCreation
final
def taskFailed[R : _task, A](t: Throwable): Eff[R, A]
Inherited from
TaskCreation
final
def taskFork[R : _task, A](call: Task[A], timeout: Option[FiniteDuration]): Eff[R, A]
Inherited from
TaskCreation
final
def taskForkScheduler[R : _task, A](call: Task[A], scheduler: Scheduler, timeout: Option[FiniteDuration]): Eff[R, A]
Inherited from
TaskCreation
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
final
def taskSuspend[R : _task, A](task: => Task[Eff[R, A]], timeout: Option[FiniteDuration]): Eff[R, A]
Inherited from
TaskCreation
def waitFor[R : _task](duration: FiniteDuration): Eff[R, Unit]
Inherited from
TaskCreation

Implicits

Inherited implicits

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