Class CompositeContainerCustomizer<C extends MessageListenerContainer>
- java.lang.Object
-
- org.springframework.amqp.rabbit.config.CompositeContainerCustomizer<C>
-
- Type Parameters:
C
- the container type.
- All Implemented Interfaces:
ContainerCustomizer<C>
public class CompositeContainerCustomizer<C extends MessageListenerContainer> extends java.lang.Object implements ContainerCustomizer<C>
Implementation ofContainerCustomizer
providing the configuration of multiple customizers at the same time.- Since:
- 2.4.8
- Author:
- Rene Felgentraeger, Gary Russell
-
-
Constructor Summary
Constructors Constructor Description CompositeContainerCustomizer(java.util.List<ContainerCustomizer<C>> customizers)
Create an instance with the provided delegate customizers.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(C container)
Configure the container.
-
-
-
Constructor Detail
-
CompositeContainerCustomizer
public CompositeContainerCustomizer(java.util.List<ContainerCustomizer<C>> customizers)
Create an instance with the provided delegate customizers.- Parameters:
customizers
- the customizers.
-
-
Method Detail
-
configure
public void configure(C container)
Description copied from interface:ContainerCustomizer
Configure the container.- Specified by:
configure
in interfaceContainerCustomizer<C extends MessageListenerContainer>
- Parameters:
container
- the container.
-
-