Skip to main content

Interface: StatusUpdateSubscriptionResult

Defined in: src/stores/sites/utils/statusUpdateHandler.ts:88

Result returned when attempting to subscribe to status updates.

Propertiesโ€‹

errorsโ€‹

errors: string[];

Defined in: src/stores/sites/utils/statusUpdateHandler.ts:90

Collected error messages encountered during subscription.


expectedListenersโ€‹

expectedListeners: number;

Defined in: src/stores/sites/utils/statusUpdateHandler.ts:92

Expected number of listeners to attach.


listenersAttachedโ€‹

listenersAttached: number;

Defined in: src/stores/sites/utils/statusUpdateHandler.ts:94

Total number of listeners that were attached.


listenerStatesโ€‹

listenerStates: ListenerAttachmentState[];

Defined in: src/stores/sites/utils/statusUpdateHandler.ts:96

Detailed attachment state for each listener scope.


successโ€‹

success: boolean;

Defined in: src/stores/sites/utils/statusUpdateHandler.ts:98

Whether all listeners were attached successfully without errors.