import 'dart:async'; import 'dart:typed_data'; import 'package:appflowy_backend/protobuf/flowy-notification/protobuf.dart'; import 'package:dartz/dartz.dart'; import 'package:appflowy_backend/protobuf/flowy-error/errors.pb.dart'; import 'package:appflowy_backend/protobuf/flowy-folder2/notification.pb.dart'; import 'package:appflowy_backend/rust_stream.dart'; import 'notification_helper.dart'; // Folder typedef FolderNotificationCallback = void Function( FolderNotification, Either, ); class FolderNotificationParser extends NotificationParser { FolderNotificationParser({ String? id, required FolderNotificationCallback callback, }) : super( id: id, callback: callback, tyParser: (ty) => FolderNotification.valueOf(ty), errorParser: (bytes) => FlowyError.fromBuffer(bytes), ); } typedef FolderNotificationHandler = Function( FolderNotification ty, Either result, ); class FolderNotificationListener { StreamSubscription? _subscription; FolderNotificationParser? _parser; FolderNotificationListener({ required String objectId, required FolderNotificationHandler handler, }) : _parser = FolderNotificationParser( id: objectId, callback: handler, ) { _subscription = RustStreamReceiver.listen((observable) => _parser?.parse(observable)); } Future stop() async { _parser = null; await _subscription?.cancel(); } }