myUserEvents method

Future<Stream<QueryResult<Object?>>> myUserEvents(
  1. Future<MyUserVersion?> ver()
)

Subscribes to MyUserEvents of the authenticated MyUser.

Authentication

Mandatory.

Initialization

Once this subscription is initialized completely, it immediately emits SubscriptionInitialized.

If nothing has been emitted for a long period of time after establishing this subscription (while not being completed), it should be considered as an unexpected server error. This fact can be used on a client side to decide whether this subscription has been initialized successfully.

Result

If ver argument is not specified (or is null) an initial state of the authenticated MyUser will be emitted after SubscriptionInitialized and before any other MyUserEvents (and won't be emitted ever again until this subscription completes). This allows to skip calling getMyUser before establishing this subscription.

If the specified ver is not fresh (was queried quite a time ago), it may become stale, so this subscription will return STALE_VERSION error on initialization. In such case:

  • either a fresh version should be obtained via getMyUser;
  • or a re-subscription should be done without specifying a ver argument (so the fresh ver may be obtained in the emitted initial state of the MyUser).

Completion

Finite.

Completes without re-subscription necessity when:

Completes requiring a re-subscription when:

  • Authenticated Session expires (SESSION_EXPIRED error is emitted).
  • An error occurs on the server (error is emitted).
  • The server is shutting down or becoming unreachable (unexpectedly completes after initialization).

Idempotency

This subscription could emit the same EventUserDeleted multiple times, so a client side is expected to handle it idempotently considering the MyUser.ver.

Implementation

Future<Stream<QueryResult>> myUserEvents(
  Future<MyUserVersion?> Function() ver,
) async {
  Log.debug('myUserEvents(ver)', '$runtimeType');

  final variables = MyUserEventsArguments(ver: await ver());
  return client.subscribe(
    SubscriptionOptions(
      operationName: 'MyUserEvents',
      document: MyUserEventsSubscription(variables: variables).document,
      variables: variables.toJson(),
    ),
    ver: ver,
  );
}