updatesFor method
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);
}