ValuableCallback.immediate constructor

ValuableCallback.immediate(
  1. ValuableCallbackPrototype callback
)

A callback that will execute immediately after a watched Valuable change

Once executed one time, this callback will execute immediatly each time a watched Valuable fires an invalidation event.

Implementation

factory ValuableCallback.immediate(ValuableCallbackPrototype callback) =>
    _ValuableCallbackImmediate(callback);