onChangeUnthrottled method

Stream<UpdateNotification> onChangeUnthrottled(
  1. Iterable<String>? tables, {
  2. bool triggerImmediately = true,
})

Like onChange, but without a defaut throttle duration.

The stream still respects backpressure for paused subscriptions with an efficient internal buffer of update notifications.

Implementation

Stream<UpdateNotification> onChangeUnthrottled(Iterable<String>? tables,
    {bool triggerImmediately = true}) {
  return onChange(tables,
      triggerImmediately: triggerImmediately, throttle: null);
}