123456789101112131415161718192021222324252627282930313233343536373839 |
- import 'dart:async';
- import 'dart:typed_data';
- import 'package:flowy_sdk/protobuf/dart-notify/protobuf.dart';
- import 'package:flowy_sdk/protobuf/flowy-user/protobuf.dart';
- import 'package:dartz/dartz.dart';
- import 'package:flowy_sdk/protobuf/flowy-error/errors.pb.dart';
- import 'package:flowy_sdk/rust_stream.dart';
- import 'notification_helper.dart';
- // User
- typedef UserNotificationCallback = void Function(UserNotification, Either<Uint8List, FlowyError>);
- class UserNotificationParser extends NotificationParser<UserNotification, FlowyError> {
- UserNotificationParser({required String id, required UserNotificationCallback callback})
- : super(
- id: id,
- callback: callback,
- tyParser: (ty) => UserNotification.valueOf(ty),
- errorParser: (bytes) => FlowyError.fromBuffer(bytes),
- );
- }
- typedef UserNotificationHandler = Function(UserNotification ty, Either<Uint8List, FlowyError> result);
- class UserNotificationListener {
- StreamSubscription<SubscribeObject>? _subscription;
- UserNotificationParser? _parser;
- UserNotificationListener({required String objectId, required UserNotificationHandler handler})
- : _parser = UserNotificationParser(id: objectId, callback: handler) {
- _subscription = RustStreamReceiver.listen((observable) => _parser?.parse(observable));
- }
- Future<void> stop() async {
- _parser = null;
- await _subscription?.cancel();
- }
- }
|