updatesSync property

Stream<SqliteUpdate> get updatesSync

A synchronous stream of data changes happening on this database.

This stream behaves similarly to updates, except that listeners are invoked synchronously (before the update completes).

The purpose of this stream is to avoid a large internal buffer when a transaction updates a large amount of rows - instead, the updates can be handled one-by-one with this.

It is crucial that listeners on this stream don't modify the database.

Implementation

Stream<SqliteUpdate> get updatesSync;