concurrent-consumers in context to spring integration
Hi,
I just have one query regrading the jms message driven channel adapter , jms message driven channel adapter adapter is used to take the data from queue and put it into some destination ,in context to spring integration my destination is another channel....below the sample code is ....
Code:
<jms:message-driven-channel-adapter
id="mq-message-listner" channel="aggregator-input-channel"
destination-name="${queueName}" concurrent-consumers="${concurrent-consumers}" />
it is taking properties from separate properties file ...below is the properties file...
Code:
queueName=RODS.APP.DATA.IN2
concurrent-consumers=10
queueCapacity=100
Now my query is what is meant by concurrent-consumers here ..please explain..!!:rolleyes: