Class CompositeMessageChannelConfigurer
- java.lang.Object
-
- org.springframework.cloud.stream.binding.CompositeMessageChannelConfigurer
-
- All Implemented Interfaces:
MessageChannelAndSourceConfigurer,MessageChannelConfigurer
public class CompositeMessageChannelConfigurer extends Object implements MessageChannelAndSourceConfigurer
MessageChannelConfigurerthat composes all the message channel configurers.- Author:
- Ilayaperumal Gopinathan
-
-
Constructor Summary
Constructors Constructor Description CompositeMessageChannelConfigurer(List<MessageChannelConfigurer> messageChannelConfigurers)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigureInputChannel(org.springframework.messaging.MessageChannel messageChannel, String channelName)Configure the given input message channel.voidconfigureOutputChannel(org.springframework.messaging.MessageChannel messageChannel, String channelName)Configure the given output message channel.voidconfigurePolledMessageSource(PollableMessageSource binding, String name)Configure the provided message source binding.
-
-
-
Constructor Detail
-
CompositeMessageChannelConfigurer
public CompositeMessageChannelConfigurer(List<MessageChannelConfigurer> messageChannelConfigurers)
-
-
Method Detail
-
configureInputChannel
public void configureInputChannel(org.springframework.messaging.MessageChannel messageChannel, String channelName)Description copied from interface:MessageChannelConfigurerConfigure the given input message channel.- Specified by:
configureInputChannelin interfaceMessageChannelConfigurer- Parameters:
messageChannel- the message channelchannelName- name of the message channel
-
configureOutputChannel
public void configureOutputChannel(org.springframework.messaging.MessageChannel messageChannel, String channelName)Description copied from interface:MessageChannelConfigurerConfigure the given output message channel.- Specified by:
configureOutputChannelin interfaceMessageChannelConfigurer- Parameters:
messageChannel- the message channelchannelName- name of the message channel
-
configurePolledMessageSource
public void configurePolledMessageSource(PollableMessageSource binding, String name)
Description copied from interface:MessageChannelAndSourceConfigurerConfigure the provided message source binding.- Specified by:
configurePolledMessageSourcein interfaceMessageChannelAndSourceConfigurer- Parameters:
binding- the binding.name- the name.
-
-