node-eventstore-client/src/systemData/inspectionDecision.js
2018-07-09 10:27:12 -07:00

9 lines
211 B
JavaScript

var InspectionDecision = Object.freeze({
DoNothing: 'doNothing',
EndOperation: 'endOperation',
Retry: 'retry',
Reconnect: 'reconnect',
Subscribed: 'subscribed'
});
module.exports = InspectionDecision;