File tree 2 files changed +17
-5
lines changed
main/java/com/rabbitmq/stream
2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -187,18 +187,24 @@ Executors
187
187
----
188
188
|`maxProducersByConnection`
189
189
|The maximum number of `Producer` instances a single connection can maintain before
190
- a new connection is open. The value must be between 1 and 255.
191
- |255
190
+ a new connection is open.
191
+ The value must be between 1 and 256.
192
+ The limit may not be strictly enforced in case of too many concurrent creations.
193
+ |256
192
194
193
195
|`maxTrackingConsumersByConnection`
194
196
|The maximum number of `Consumer` instances that store their offset a single connection
195
- can maintain before a new connection is open. The value must be between 1 and 255.
197
+ can maintain before a new connection is open.
198
+ The value must be between 1 and 256.
199
+ The limit may not be strictly enforced in case of too many concurrent creations.
196
200
|50
197
201
198
202
|`maxConsumersByConnection`
199
203
|The maximum number of `Consumer` instances a single connection can maintain before
200
- a new connection is open. The value must be between 1 and 255.
201
- |255
204
+ a new connection is open.
205
+ The value must be between 1 and 256.
206
+ The limit may not be strictly enforced in case of too many concurrent creations.
207
+ |256
202
208
203
209
|`lazyInitialization`
204
210
|To delay the connection opening until necessary.
Original file line number Diff line number Diff line change @@ -247,6 +247,8 @@ public interface EnvironmentBuilder {
247
247
*
248
248
* <p>Default is 256, which is the maximum value.
249
249
*
250
+ * <p>The limit may not be strictly enforced in case of too many concurrent creations.
251
+ *
250
252
* @param maxProducersByConnection
251
253
* @return this builder instance
252
254
*/
@@ -257,6 +259,8 @@ public interface EnvironmentBuilder {
257
259
*
258
260
* <p>Default is 50, which is the maximum value.
259
261
*
262
+ * <p>The limit may not be strictly enforced in case of too many concurrent creations.
263
+ *
260
264
* @param maxTrackingConsumersByConnection
261
265
* @return this builder instance
262
266
*/
@@ -267,6 +271,8 @@ public interface EnvironmentBuilder {
267
271
*
268
272
* <p>Default is 256, which is the maximum value.
269
273
*
274
+ * <p>The limit may not be strictly enforced in case of too many concurrent creations.
275
+ *
270
276
* @param maxConsumersByConnection
271
277
* @return this builder instance
272
278
*/
You can’t perform that action at this time.
0 commit comments