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 useStateCallbackBy[A](state: CtxFn[UseState[A]])(implicit step: Step): Next[(A => CallbackTo[Unit]) => CallbackTo[Unit]]

Given a state, allows registering callbacks which are triggered when the state changes.

Given a state, allows registering callbacks which are triggered when the state changes.

Inherited methods

final def useStateCallback[A](state: => UseState[A])(implicit step: Step): Next[(A => CallbackTo[Unit]) => CallbackTo[Unit]]

Given a state, allows registering callbacks which are triggered when the state changes.

Given a state, allows registering callbacks which are triggered when the state changes.

Inherited from:
Primary
final def useStateCallbackBy[A](state: Ctx => UseState[A])(implicit step: Step): Next[(A => CallbackTo[Unit]) => CallbackTo[Unit]]

Given a state, allows registering callbacks which are triggered when the state changes.

Given a state, allows registering callbacks which are triggered when the state changes.

Inherited from:
Primary