2016-03-09 20:46:15 +00:00
|
|
|
const SubscriptionDropReason = {
|
|
|
|
AccessDenied: 'accessDenied',
|
|
|
|
CatchUpError: 'catchUpError',
|
|
|
|
ConnectionClosed: 'connectionClosed',
|
|
|
|
EventHandlerException: 'eventHandlerException',
|
2016-03-11 06:57:39 +00:00
|
|
|
MaxSubscribersReached: 'maxSubscribersReached',
|
|
|
|
NotFound: 'notFound',
|
|
|
|
PersistentSubscriptionDeleted: 'persistentSubscriptionDeleted',
|
2016-03-09 20:46:15 +00:00
|
|
|
ProcessingQueueOverflow: 'processingQueueOverflow',
|
|
|
|
ServerError: 'serverError',
|
|
|
|
SubscribingError: 'subscribingError',
|
|
|
|
UserInitiated: 'userInitiated',
|
|
|
|
Unknown: 'unknown'
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = SubscriptionDropReason;
|