watch method
- UserId id
Returns the Stream of real-time changes happening with the DtoSettings
identified by the provided id
.
Implementation
Stream<DtoSettings?> watch(UserId id) {
return stream((db) {
final stmt = db.select(db.settings)
..where((u) => u.userId.equals(id.val));
StreamController<DtoSettings?>? controller = _controllers[id];
if (controller == null) {
controller = StreamController<DtoSettings?>.broadcast(sync: true);
_controllers[id] = controller;
}
return StreamGroup.merge([
controller.stream,
stmt.watch().map((e) => e.isEmpty ? null : _SettingsDb.fromDb(e.first)),
]);
});
}