Skip to content
Merged
Show file tree
Hide file tree
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 @@ -107,7 +107,7 @@ The `API.subscribe()` method exposes a `subscriptionDataPublisher` for the strea

##### `Hub.publisher(for:)`

The Amplify Hub category exposes only one Combine-related API: `Hub.publisher(for:)`, which returns a publisher for all events on a given channel. You can then apply the standard Combine [`filter`](<https://developer.apple.com/documentation/combine/anypublisher/filter(_:)>) operator to inspect only those events you care about.
The Amplify Hub category exposes only one Combine-related API: `Hub.publisher(for:)`, which returns a publisher for all events on a given channel. You can then apply the standard Combine [`filter`](<https://developer.apple.com/documentation/combine/publishers/filter>) operator to inspect only those events you care about.

##### `Storage` upload & download operations

Expand Down
2 changes: 1 addition & 1 deletion src/fragments/lib/project-setup/ios/combine/combine.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ When using Amplify.Publisher, cancelling a subscription to a publisher also canc

## Hub.publisher(for:)

The Amplify Hub category exposes only one Combine-related API: `Hub.publisher(for:)`, which returns a publisher for all events on a given channel. You can then apply the standard Combine [`filter`](https://developer.apple.com/documentation/combine/anypublisher/filter(_:)) operator to inspect only those events you care about.
The Amplify Hub category exposes only one Combine-related API: `Hub.publisher(for:)`, which returns a publisher for all events on a given channel. You can then apply the standard Combine [`filter`](https://developer.apple.com/documentation/combine/publishers/filter) operator to inspect only those events you care about.