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

7 lines
183 B
JavaScript

const SystemConsumerStrategies = Object.freeze({
DispatchToSingle: 'DispatchToSingle',
RoundRobin: 'RoundRobin',
Pinned: 'Pinned'
});
module.exports = SystemConsumerStrategies;