shapeSubscriptionSyncStatusChanged method

  1. @override
void shapeSubscriptionSyncStatusChanged(
  1. String dbName,
  2. String key,
  3. SyncStatus status
)
override

Notification for shape subscription sync status changes. Every notification will include a key that uniquely identifies the shape for which the sync status changed, as well as the new sync status.

Implementation

@override
void shapeSubscriptionSyncStatusChanged(
  String dbName,
  String key,
  SyncStatus status,
) {
  if (!_hasDbName(dbName)) {
    return;
  }

  _emitShapeSubscriptionSyncStatusChange(dbName, key, status);
}