node-eventstore-client
Version:
A port of the EventStore .Net ClientAPI to Node.js
16 lines (15 loc) • 565 B
JavaScript
const SubscriptionDropReason = Object.freeze({
AccessDenied: 'accessDenied',
CatchUpError: 'catchUpError',
ConnectionClosed: 'connectionClosed',
EventHandlerException: 'eventHandlerException',
MaxSubscribersReached: 'maxSubscribersReached',
NotFound: 'notFound',
PersistentSubscriptionDeleted: 'persistentSubscriptionDeleted',
ProcessingQueueOverflow: 'processingQueueOverflow',
ServerError: 'serverError',
SubscribingError: 'subscribingError',
UserInitiated: 'userInitiated',
Unknown: 'unknown'
});
module.exports = SubscriptionDropReason;