13 lines
410 B
JavaScript
13 lines
410 B
JavaScript
|
const SubscriptionDropReason = {
|
||
|
AccessDenied: 'accessDenied',
|
||
|
CatchUpError: 'catchUpError',
|
||
|
ConnectionClosed: 'connectionClosed',
|
||
|
EventHandlerException: 'eventHandlerException',
|
||
|
ProcessingQueueOverflow: 'processingQueueOverflow',
|
||
|
ServerError: 'serverError',
|
||
|
SubscribingError: 'subscribingError',
|
||
|
UserInitiated: 'userInitiated',
|
||
|
Unknown: 'unknown'
|
||
|
};
|
||
|
|
||
|
module.exports = SubscriptionDropReason;
|