Interface MessageChannelConfigurer
- All Known Subinterfaces:
MessageChannelAndSourceConfigurer
- All Known Implementing Classes:
CompositeMessageChannelConfigurer,MessageConverterConfigurer
public interface MessageChannelConfigurer
Interface to be implemented by the classes that configure the
Bindable message
channels.- Author:
- Ilayaperumal Gopinathan
-
Method Summary
Modifier and TypeMethodDescriptionvoidconfigureInputChannel(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 Details
-
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
-