- Companion
- object
Type members
Value members
Concrete methods
def ioMemo[R, A](key: AnyRef, cache: Cache, e: Eff[R, A])(implicit task: MemberInOut[IO, R]): Eff[R, A]
Memoize io effects using a cache
Memoize io effects using a cache
if this method is called with the same key the previous value will be returned
def ioMemoized[R, A](key: AnyRef, e: Eff[R, A])(implicit task: MemberInOut[IO, 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
def runIoMemo[R, U, A](cache: Cache)(effect: Eff[R, A])(implicit m: Aux[Memoized, R, U], task: MemberIn[IO, U]): Eff[U, A]
def unsafeRunAsync[A](e: Eff[Fx1[IO], A])(cb: Either[Throwable, A] => Unit)(implicit i: IORuntime): Unit