Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ You can install the LiveQuery client via including it in your Podfile:
The LiveQuery client interface is based around the concept of `Subscription`s. You can register any `PFQuery` for live updates from the associated live query server, by simply calling `subscribe()` on a query:
```swift
let myQuery = Message.query()!.where(....)
let subscription: Subscription<Message> = myQuery.subscribe()
let subscription: Subscription<Message> = Client.shared.subscribe(myQuery)
```

Where `Message` is a registered subclass of PFObject.
Expand Down