updatesFor method

Stream<UpdateNotification> updatesFor(
  1. Database database
)

Obtains a stream of UpdateNotifications from a database.

The default implementation uses custom requests to allow workers to debounce the stream on their side to avoid messages where possible.

Implementation

Stream<UpdateNotification> updatesFor(Database database) {
  return _updateStreams.updatesFor(database);
}