Batched Messages
Batched messages (created by a producer) are automatically de-batched by listener containers (using the springBatchFormat
message header).
Rejecting any message from a batch causes the entire batch to be rejected.
See Batching for more information about batching.
Starting with version 2.2, the SimpleMessageListenerContainer
can be use to create batches on the consumer side (where the producer sent discrete messages).
Set the container property consumerBatchEnabled
to enable this feature.
deBatchingEnabled
must also be true so that the container is responsible for processing batches of both types.
Implement BatchMessageListener
or ChannelAwareBatchMessageListener
when consumerBatchEnabled
is true.
Starting with version 2.2.7 both the SimpleMessageListenerContainer
and DirectMessageListenerContainer
can debatch producer created batches as List<Message>
.
See @RabbitListener with Batching for information about using this feature with @RabbitListener
.