-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for AMQP Consumer-side batch creation #3172
Comments
garyrussell
added a commit
to garyrussell/spring-amqp
that referenced
this issue
Feb 7, 2020
In preparation for spring-projects/spring-integration#3172 Allow the inbound endpoint to detect if its listener container is configured to return batches.
garyrussell
added a commit
to garyrussell/spring-amqp
that referenced
this issue
Feb 7, 2020
In preparation for spring-projects/spring-integration#3172 Allow the inbound endpoint to detect if its listener container is configured to return batches.
artembilan
pushed a commit
to spring-projects/spring-amqp
that referenced
this issue
Feb 7, 2020
In preparation for spring-projects/spring-integration#3172 Allow the inbound endpoint to detect if its listener container is configured to return batches.
garyrussell
added a commit
to garyrussell/spring-integration
that referenced
this issue
Feb 7, 2020
Resolves spring-projects#3172 When the listener container supports creating batches of consumed messages, present the batch as the message payload - either a `List<Message<?>>` or `List<SomePayload>`.
garyrussell
added a commit
to garyrussell/spring-integration
that referenced
this issue
Feb 7, 2020
Resolves spring-projects#3172 When the listener container supports creating batches of consumed messages, present the batch as the message payload - either a `List<Message<?>>` or `List<SomePayload>`.
garyrussell
added a commit
to garyrussell/spring-integration
that referenced
this issue
Feb 7, 2020
Resolves spring-projects#3172 When the listener container supports creating batches of consumed messages, present the batch as the message payload - either a `List<Message<?>>` or `List<SomePayload>`.
garyrussell
added a commit
to garyrussell/spring-integration
that referenced
this issue
Feb 7, 2020
Resolves spring-projects#3172 When the listener container supports creating batches of consumed messages, present the batch as the message payload - either a `List<Message<?>>` or `List<SomePayload>`.
artembilan
pushed a commit
that referenced
this issue
Feb 10, 2020
Resolves #3172 When the listener container supports creating batches of consumed messages, present the batch as the message payload - either a `List<Message<?>>` or `List<SomePayload>`. * Add 'since' to new method.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See spring-projects/spring-amqp#1032
Add a
ChannelAwareBatchMessageListener
and mapList<Message>
toList<?>
.In preparation for spring-attic/spring-cloud-stream-binder-rabbit#209
In order to get efficiency on the producer side we need to enable batching on the consumer side, even when the upstream producer doesn't send messages in a batch.
The text was updated successfully, but these errors were encountered: