incomingCallsTopEvents method

Stream<QueryResult<Object?>> incomingCallsTopEvents(
  1. int count
)

Subscribes to updates of top count items of incomingCalls list.

Note, that EventIncomingChatCallsTopChatCallAdded informs about a ChatCall becoming the topmost in incomingCalls list, but never about a ChatCall being updated itself.

Note, that EventIncomingChatCallsTopChatCallRemoved informs about a ChatCall being removed from top count items of incomingCalls list, but never about a ChatCall being finished or removed itself.

Instead, use callEvents for being informed correctly about ChatCall changes.

Authentication

Mandatory.

Initialization

Once this subscription is initialized completely, it immediately emits SubscriptionInitialized followed by the initial state of the IncomingChatCallsTop list (and they won't be emitted ever again until this subscription completes). Note, that emitting an empty list is possible valid.

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.

Completion

Infinite.

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).

Implementation

Stream<QueryResult> incomingCallsTopEvents(int count) {
  Log.debug('incomingCallsTopEvents($count)', '$runtimeType');

  final variables = IncomingCallsTopEventsArguments(count: count);
  return client.subscribe(
    SubscriptionOptions(
      operationName: 'IncomingCallsTopEvents',
      document:
          IncomingCallsTopEventsSubscription(variables: variables).document,
      variables: variables.toJson(),
    ),
  );
}