Class IntervalObservable<Value, Params>

A variation of CallbackObservable that automatically calls the callback to update itself at a regular interval.

Type Parameters

  • Value
  • Params

Hierarchy (View Summary)

Constructors

Properties

currentTimeoutId: undefined | number | Timeout
equalityCheck: EqualityCheck<
    | Params
    | {
        [KeyType in string
        | number
        | symbol]: Exclude<Awaited<Value>, typeof noUpdate>[KeyType]
    },
>

The function used to check equality between different values for params or value. This can be manually set at any time to change the function used.

internalParams: typeof NotSet | Params
intervalDuration: undefined | Partial<Record<DurationUnit, undefined | number>>

The duration between update intervals. This can be manually modified at any time to affect the interval for the next update.

lastResolvedValue: undefined | Exclude<Awaited<Value>, typeof noUpdate> = undefined

The last resolved value. This only changes when value is set to a resolved value or when a promise value resolves.

Do not set this directly. Use AsyncObservable.setValue instead.

lastSetId: string = ...

Used to prevent setting different values from racing with each other.

lastSetPromise: undefined | Promise<AllowNoUpdate<Value>>
lastSetTime: undefined | {}

The last time a value was set.

Do not set this externally, it's simply for informational purposes.

listenerMap: WeakMap<
    ObservableListener<any>,
    TypedEventListenerWithRemoval<ObservableValueUpdateEvent>,
> = ...

This is necessary so we can fire listeners that listen directly to the value, not the emitted event.

rateLimit: undefined | Partial<Record<DurationUnit, undefined | number>>

The minimum duration between updates. Any extra value sets or interval updates within this duration will be ignored.

updateCallback: undefined | UpdateCallback<Value, Params>

The callback to call for updating value. Uses lastParams as its inputs.

value: AsyncValue<Value> = ...

The value which this observable currently contains. In this AsyncObservable, value may be a promise, a resolved value, or an error.

Do not set this directly. Use AsyncObservable.setValue instead.

waitingForValueDeferredPromise: DeferredPromise<
    Exclude<Awaited<Value>, typeof noUpdate>,
> = ...
NotSet: typeof NotSet = ...

Accessors

  • get lastParams(): undefined | Params

    The last params for updateCallback. This can be set by the constructor, updateTrigger, forceUpdate, or by setParams.

    Do not set this directly. Use setParams instead.

    Returns undefined | Params

Methods

  • Force updateCallback to be called again regardless of whatever the given params are equal to the previous params or not. value will still only be updated if the output of updateCallback is new.

    New params are optional here. If none are provided, the last set parameters are used.

    Parameters

    Returns boolean

    Error if updateCallback or params have not been set yet.

  • Returns boolean

    true if the operation should not proceed due to rate limiting, otherwise false.

  • Listen to changes in the observable's value.

    Parameters

    • fireImmediately: boolean

      If true, the callback will immediately be fired with whatever the current value is.

    • callback: ObservableListener<Value>

      The callback to fire when a new value is set on the observable.

    Returns RemoveListenerCallback

    A callback to remove the listener.

  • Listen to any event omitted by the observable rather than just the value changing.

    Type Parameters

    • const EventDefinition extends Readonly<
          {
              type: | "observable-value-update"
              | "observable-value-resolve"
              | "observable-value-error"
              | "observable-destroy"
              | "observable-callback-call"
              | "observable-params-update"
              | "observable-interval-run"
              | "observable-interval-skip"
              | "observable-interval-rate-limited";
          },
      >

    Parameters

    Returns RemoveListenerCallback

    A callback to remove the listener.

  • Immediately stop the observable's interval.

    Returns boolean

    Whether or not the interval was stopped. This will be false, for example, if the interval was already stopped.

  • Immediately update the observable and start the interval.

    Returns boolean

    Whether or not the interval started. This will be false, for example, if the interval is already running.

  • Set a new value to the observable. If a promise is used, value will be set to the promise and value will be automatically overridden with the resolution or rejection result of the promise once it's available.

    New resolved values will only be set and listeners will only be fired if it is not equal to the current value (as determined by equalityCheck).

    Parameters

    Returns boolean

    true if the new value was set, false otherwise.

  • Update the params for updateCallback. If the params are not equal to the previous params (according to the provided or default equalityCheck), updateCallback will be called and will update value.

    Parameters

    • ...__namedParameters: Exclude<Params, undefined> extends never ? [] : [Params]

      This complicated params type allows the args to be empty if Params is undefined but requires arguments otherwise.

    Returns boolean

    true if calling this triggered an update, false otherwise.

    Error if updateCallback or params have not been set yet.