Interface MessageChannelConfigurer
-
- All Known Subinterfaces:
MessageChannelAndSourceConfigurer
- All Known Implementing Classes:
CompositeMessageChannelConfigurer,MessageConverterConfigurer
public interface MessageChannelConfigurerInterface to be implemented by the classes that configure theBindablemessage channels.- Author:
- Ilayaperumal Gopinathan
-
-
Method Summary
All Methods Instance Methods Abstract 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.
-
-
-
Method Detail
-
configureInputChannel
void configureInputChannel(org.springframework.messaging.MessageChannel messageChannel, String channelName)Configure the given input message channel.- Parameters:
messageChannel- the message channelchannelName- name of the message channel
-
configureOutputChannel
void configureOutputChannel(org.springframework.messaging.MessageChannel messageChannel, String channelName)Configure the given output message channel.- Parameters:
messageChannel- the message channelchannelName- name of the message channel
-
-