You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -663,8 +663,8 @@ public static class SimpleContainer extends AmqpContainer {
663
663
privateIntegermaxConcurrency;
664
664
665
665
/**
666
-
* Number of messages to be processed between acks when the acknowledge mode is
667
-
* AUTO. If larger than prefetch, prefetch will be increased to this value.
666
+
* Batch size, expressed as the number of physical messages, to be used by the
667
+
* container.
668
668
*/
669
669
privateIntegerbatchSize;
670
670
@@ -692,19 +692,19 @@ public void setMaxConcurrency(Integer maxConcurrency) {
692
692
}
693
693
694
694
/**
695
-
* Get the number of messages processed in one transaction.
696
-
* @return number of messages
695
+
* Return the number of messages processed in one transaction.
696
+
* @return the number of messages
697
697
* @deprecated since 2.2.0 in favor of {@link SimpleContainer#getBatchSize()}
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/amqp/RabbitAutoConfigurationTests.java
0 commit comments