Skip to content

fix: heading order on subscribe-data page #7739

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -340,9 +340,9 @@ func createSubscription() {

</BlockSwitcher>

### Unsubscribing from updates
## Unsubscribing from updates

#### Async/Await
### Async/Await

To unsubscribe from updates, you can call `cancel()` on the subscription.

Expand All @@ -353,7 +353,7 @@ func cancelSubscription() {
}
```

#### Combine
### Combine

Calling `cancel()` on the sequence will disconnect the subscription from the backend. Any downstream subscribers will also be cancelled.

Expand Down Expand Up @@ -537,7 +537,7 @@ Amplify.Hub.listen(
);
```

#### SubscriptionStatus
### SubscriptionStatus

- **`connected`** - Connected and working with no issues
- **`connecting`** - Attempting to connect (both initial connection and reconnection)
Expand Down