Secondary

final class Secondary[Ctx, CtxFn[_], Step <: SubsequentStep[Ctx, CtxFn]](api: Secondary[Ctx, CtxFn, Step]) extends Primary[Ctx, Step]
class Primary[Ctx, Step]
class Object
trait Matchable
class Any

Value members

Concrete methods

def useAsyncEffectBy[A](effect: CtxFn[IO[IO[Unit]]])(implicit step: Step): Self

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

def useAsyncEffectOnMountBy[A](effect: CtxFn[IO[IO[Unit]]])(implicit step: Step): Self

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

def useAsyncEffectWithDepsBy[D : Reusability, A](deps: CtxFn[D])(effect: CtxFn[D => IO[IO[Unit]]])(implicit evidence$4: Reusability[D], step: Step): Self

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Inherited methods

final def useAsyncEffect[A](effect: IO[IO[Unit]])(implicit step: Step): Self

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Inherited from:
Primary
final def useAsyncEffectBy[A](effect: Ctx => IO[IO[Unit]])(implicit step: Step): Self

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Inherited from:
Primary
final def useAsyncEffectOnMount[A](effect: IO[IO[Unit]])(implicit step: Step): Self

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Inherited from:
Primary
final def useAsyncEffectOnMountBy[A](effect: Ctx => IO[IO[Unit]])(implicit step: Step): Self

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Inherited from:
Primary
final def useAsyncEffectWithDeps[D : Reusability, A](deps: => D)(effect: D => IO[IO[Unit]])(implicit evidence$2: Reusability[D], step: Step): Self

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Inherited from:
Primary
final def useAsyncEffectWithDepsBy[D : Reusability, A](deps: Ctx => D)(effect: Ctx => D => IO[IO[Unit]])(implicit evidence$3: Reusability[D], step: Step): Self

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Simulates useEffect with cleanup callback for async effect. To declare an async effect without a cleanup callback, just use the regular useEffect hook.

Inherited from:
Primary