Enum SubscriptionSetState
An enum representing the state of a Realm's subscription set.
Namespace: Realms.Sync
Assembly: Realm.dll
Syntax
public enum SubscriptionSetState : byte
Fields
Name | Description |
---|---|
Pending | The subscription update has been persisted locally, but the server hasn't yet returned all the data that matched the updated subscription queries. |
Complete | The server has acknowledged the subscription and sent all the data that matched the subscription queries at the time the subscription set was updated. The server is now in steady-state synchronization mode where it will stream updates as they come. |
Error | The server has returned an error and synchronization is paused for this Realm. To view the actual error, use Error. You can still use Update(Action) to update the subscriptions and, if the new update doesn't trigger an error, synchronization will be restarted. |
Superseded | The subscription set has been superseded by an updated one. This typically means that someone has called Update(Action) on a different instance of the SubscriptionSet. You should not use a superseded subscription set and instead obtain a new instance by calling Subscriptions. |