node-eventstore-client/src/systemConsumerStrategies.js

7 lines
183 B
JavaScript
Raw Normal View History

const SystemConsumerStrategies = Object.freeze({
2016-03-11 06:57:39 +00:00
DispatchToSingle: 'DispatchToSingle',
RoundRobin: 'RoundRobin',
Pinned: 'Pinned'
});
2016-03-11 06:57:39 +00:00
module.exports = SystemConsumerStrategies;