watchSingle method

Stream<DtoMyUser?> watchSingle(
  1. UserId id
)

Returns the Stream of real-time changes happening with the DtoMyUser identified by the provided id.

Implementation

Stream<DtoMyUser?> watchSingle(UserId id) {
  return stream((db) {
    final stmt = db.select(db.myUsers)..where((u) => u.id.equals(id.val));

    StreamController<DtoMyUser?>? controller = _controllers[id];
    if (controller == null) {
      controller = StreamController<DtoMyUser?>.broadcast(sync: true);
      _controllers[id] = controller;
    }

    return StreamGroup.merge([
      controller.stream,
      stmt.watch().map((e) => e.isEmpty ? null : _MyUserDb.fromDb(e.first)),
    ]);
  });
}