japgolly.scalajs.react.extra.DefaultReusabilityOverlay
See theDefaultReusabilityOverlay companion object
class DefaultReusabilityOverlay[F[_]]($: Comp, options: Options[F])(implicit F: Sync[F]) extends ReusabilityOverlay[F], TimerSupportF[F]
Attributes
- Companion
- object
- Graph
-
- Supertypes
-
trait TimerSupportF[F]trait OnUnmountF[F]trait ReusabilityOverlay[F]class Objecttrait Matchableclass AnyShow all
Members list
Value members
Concrete methods
Attributes
- Definition Classes
Inherited methods
Attributes
- Inherited from:
- OnUnmountF
final def setGuaranteedInterval[G[_]](f: G[Unit], interval: FiniteDuration)(implicit G: Dispatch[G]): F[Unit]
Provides setInterval
-like behavior insuring that the time between calls of f
is at least the timeout
.
Provides setInterval
-like behavior insuring that the time between calls of f
is at least the timeout
.
Attributes
- Inherited from:
- TimerSupportF
final def setGuaranteedIntervalMs[G[_]](f: G[Unit], intervalInMilliseconds: Double)(implicit G: Dispatch[G]): F[Unit]
Provides setInterval
-like behavior insuring that the time between calls of f
is at least the timeout
.
Provides setInterval
-like behavior insuring that the time between calls of f
is at least the timeout
.
Attributes
- Inherited from:
- TimerSupportF
Invokes the callback f
repeatedly every period
.
final def setIntervalMs[G[_]](f: G[Unit], periodInMilliseconds: Double)(implicit G: Dispatch[G]): F[Unit]
Attributes
- Inherited from:
- TimerSupportF
final def setTimeout[G[_]](f: => G[Unit], timeout: FiniteDuration)(implicit G: Dispatch[G]): F[Unit]
Invokes the callback f
once after a minimum of timeout
elapses.
Invokes the callback f
once after a minimum of timeout
elapses.
Attributes
- Inherited from:
- TimerSupportF
final def setTimeoutMs[G[_]](f: => G[Unit], timeoutInMilliseconds: Double)(implicit G: Dispatch[G]): F[Unit]
Invokes the callback f
once after a minimum of timeout
elapses.
Invokes the callback f
once after a minimum of timeout
elapses.
Attributes
- Inherited from:
- TimerSupportF
Attributes
- Inherited from:
- OnUnmountF
Concrete fields
In this article