Variable subscriptionCoordinatorConst
subscriptionCoordinator: { addListener: ((channel,
callback,
event?) => void); initialisePubnub: ((pnConfig) => void); listeners: Record<string, SubscriptionEventListenerFn[]>; removeAllListenersForEvent: ((channel,
event?) => Record<string, SubscriptionEventListenerFn[]>); removeListener: ((channel,
callback,
event?) => Record<string, SubscriptionEventListenerFn[]>); subscribe: ((channel,
opts?) => void); unsubscribe: ((channel) => void); } = ... Type declaration
addListener: ((channel, callback, event?) => void)
- (channel, callback, event?): void
Returns void
initialisePubnub: ((pnConfig) => void)
- (pnConfig): void
Returns void
removeAllListenersForEvent: ((channel, event?) => Record<string, SubscriptionEventListenerFn[]>)
removeListener: ((channel, callback, event?) => Record<string, SubscriptionEventListenerFn[]>)
subscribe: ((channel, opts?) => void)
- (channel, opts?): void
Returns void
unsubscribe: ((channel) => void)
- (channel): void
Returns void