enum | PubSubSubscriptionState { PubSubSubscriptionState.NotSubscribed , PubSubSubscriptionState.Subscribing , PubSubSubscriptionState.Subscribed , PubSubSubscriptionState.Unsubscribing , PubSubSubscriptionState.SubscribeError , PubSubSubscriptionState.UnsubscribeError } An enum used to represent the current state of a topic's subscription |
delegate void | A delegate callback for topic id and subscription state |
NotSubscribed | Not subscribed to a topic whatsoever |
Subscribing | Currently attempting to subscribe to a topic |
Subscribed | Currently subscribed to a topic |
Unsubscribing | Currently sending an unsubscribe request to the server |
SubscribeError | An error occured while subscribing, will attempt again if connected |
UnsubscribeError | An error occured while unsubscribing, will attempt again if connected |
delegate void Meta.Voice.Net.PubSub.PubSubTopicSubscriptionDelegate ( string topicId, PubSubSubscriptionState subscriptionState ) |
---|
A delegate callback for topic id and subscription state |