Interface RabbitTemplate.ConfirmCallback
- All Known Implementing Classes:
AsyncRabbitTemplate
- Enclosing class:
- RabbitTemplate
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A callback for publisher confirmations.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
confirm
(CorrelationData correlationData, boolean ack, String cause) Confirmation callback.
-
Method Details
-
confirm
Confirmation callback.- Parameters:
correlationData
- correlation data for the callback.ack
- true for ack, false for nackcause
- An optional cause, for nack, when available, otherwise null.
-