Enum SubscriptionState
The subscription current state.
Namespace: Unity.Services.Wire.Internal
Syntax
public enum SubscriptionState
Fields
| Name | Description | Value |
|---|---|---|
| Unsubscribed | The subscription is inactive. |
0 |
| Synced | The subscription is active and synchronized to the server. You can trust that the last message received from the subscription is up to date. |
1 |
| Unsynced | A connectivity issue prevents Wire from receiving update on this active subscription. As soon as Wire has reconnected, the subscription will receive the missing messages. |
2 |
| Error | The subscription encountered an error and is not active. |
3 |
| Subscribing | Wire is getting a token then sending a request to Wire to subscribe to a channel. |
4 |