Live Objects are supported in the iOS SDK with AmityObject and AmityCollection for real-time data synchronization
AmityObject
instance for observing changes in a single object whereas Live Collection is represented by AmityCollection
instance for observing changes in a list of objects.
These generic classes encapsulate any other object and notify observers whenever any property of the encapsulated object changes.
AmityObject<AmityPost>
, AmityCollection<AmityMessage>
, or AmityObject<AmityChannel>
.AmityObject
and AmityCollection
provide methods for observing changes in objects. The life cycle of observation is tied to its token. As soon as the token is invalidated or deallocated, observation ends.
AmityNotificationToken
is a simple object which keeps track of what is being observed. Each Live Object or Live Collection observation is tied to its respective token. As soon as the token is invalidated or deallocated, observation ends. The token is declared within the scope of the class.
AmityObject
is a generic class that keeps track of a single object. It is a live object. In iOS AmitySDK, any object which is encapsulated by AmityObject is a live object.
Examples: AmityObject<AmityMessage>
, AmityObject<AmityChannel>
AmityObject class exposes the following methods: observe
and observeOnce
. These methods help observe a live object. Whenever any property for the observed object changes, the observer is triggered.
observe
method can be triggered multiple times throughout the lifetime of the application as long as its associated AmityNotificationToken is retained in memory. observeOnce
method, on the other hand, can only be triggered once.
Both observe
and observeOnce
methods will be called from the main thread so you can perform any UI update-related tasks from within the observed block itself.
If the requested object data is stored locally on the device, the block will be called immediately with the local version of the data. This can be verified through the dataStatus property of AmityObject.
In parallel, a request is made to the server to fetch the latest version of the data. Once the data is returned, the observed block will be triggered again.
Any future changes to that data from any sources can trigger an observer.
Lifecycle: The life cycle of the observer is tied to its token. If the token is not retained, then the observer can get deallocated at any time and will not be called.
Observer Implementation
Invalidate Token
Basic Object Access
Fresh Data Only
Direct Object Access
observe
or observeOnce
block depending on your requirement.observeOnce
method, if data is present locally, this observer will be triggered only once with that local data. If you are looking for fresh data, use the observe
block and invalidate the token once fresh data is received as shown above.
loadingStatus
property, which is of type AmityLoadingStatus
and it can have one of four possible values.
AmityCollection
is a generic class that keeps track of a collection of objects. It is a live collection. In iOS SDK, any object which is encapsulated by AmityCollection class is a live collection.
Examples: AmityCollection<AmityMessage>
, AmityCollection<AmityChannel>
AmityCollection exposes these methods: observe
and observeOnce
. These methods help to observe a live collection. Whenever any property for any object within the collection changes, the observer is triggered.
observe
method can get triggered multiple times throughout the lifetime of the application as long as it’s associated AmityNotificationToken is retained in memory. observeOnce
, on the other hand, can only be triggered once.
Both observe
and observeOnce
method will be called from the main thread so you can perform any UI update related task within the observe block itself.
If the requested data collection is stored locally on the device, the block will be called immediately with the local version of the data. This can be verified through the dataStatus property of AmityCollection.
In parallel, a request is made to the server to fetch the latest version of the data. Once the data is returned, the observe block will be triggered again.
Any future changes to the data from any sources can trigger observer.
Lifecycle: The life cycle of the observer for AmityCollection is also tied to its token. If the token is not retained, the observer can get deallocated at any time and will not be called.
objectAtIndex:
method. This allows the framework to store most of the actual result on disk, and load them in memory only when necessary.
AmityCollection also exposes a count
property which determines the number of objects present in a collection.
With these two public interfaces, you can create a robust list UI for your use case. Similar to AmityObject, AmityCollection also exposes dataStatus
and loadingStatus
property.
Basic Collection Access
Pagination
nextPage()
and previousPage()
method to fetch more data. It also exposes hasNext
and hasPrevious
property to check if next page or previous page is present.Live Object - SwiftUI
Live Collection - SwiftUI
Live Object - Combine
Live Collection - Combine
#1: LiveCollection is not updated when used from inside of another observable class
#2: Published property still returns old values
Token Management
AmityNotificationToken
in appropriate scope to maintain observations. Store tokens as instance variables to prevent deallocation.Observer Selection
observe
for ongoing updates throughout the application lifecycle, and observeOnce
for single-time data retrieval.Data Status Verification
dataStatus
to determine if data is fresh or local before processing, especially when you need the most recent data.SwiftUI Integration
@ObservedObject
to avoid nested ObservableObject issues in SwiftUI.Combine Subscriptions