Merge branch '2.0.x'

This commit is contained in:
Stephane Nicoll
2018-09-21 16:47:33 +02:00
2 changed files with 6 additions and 7 deletions

View File

@@ -577,8 +577,8 @@ public class RabbitProperties {
private AcknowledgeMode acknowledgeMode;
/**
* Number of messages to be handled in a single request. It should be greater than
* or equal to the transaction size (if used).
* Maximum number of unacknowledged messages that can be outstanding at each
* consumer.
*/
private Integer prefetch;
@@ -661,9 +661,8 @@ public class RabbitProperties {
private Integer maxConcurrency;
/**
* Number of messages to be processed in a transaction. That is, the number of
* messages between acks. For best results, it should be less than or equal to the
* prefetch count.
* Number of messages to be processed between acks when the acknowledge mode is
* AUTO. If larger than prefetch, prefetch will be increased to this value.
*/
private Integer transactionSize;