Java Code Examples for org.springframework.messaging.support.ExecutorSubscribableChannel#setInterceptors()

The following examples show how to use org.springframework.messaging.support.ExecutorSubscribableChannel#setInterceptors() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractMessageBrokerConfiguration.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Bean
public AbstractSubscribableChannel clientInboundChannel() {
	ExecutorSubscribableChannel channel = new ExecutorSubscribableChannel(clientInboundChannelExecutor());
	channel.setLogger(SimpLogging.forLog(channel.getLogger()));
	ChannelRegistration reg = getClientInboundChannelRegistration();
	if (reg.hasInterceptors()) {
		channel.setInterceptors(reg.getInterceptors());
	}
	return channel;
}
 
Example 2
Source File: AbstractMessageBrokerConfiguration.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Bean
public AbstractSubscribableChannel clientOutboundChannel() {
	ExecutorSubscribableChannel channel = new ExecutorSubscribableChannel(clientOutboundChannelExecutor());
	channel.setLogger(SimpLogging.forLog(channel.getLogger()));
	ChannelRegistration reg = getClientOutboundChannelRegistration();
	if (reg.hasInterceptors()) {
		channel.setInterceptors(reg.getInterceptors());
	}
	return channel;
}
 
Example 3
Source File: AbstractMessageBrokerConfiguration.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Bean
public AbstractSubscribableChannel brokerChannel() {
	ChannelRegistration reg = getBrokerRegistry().getBrokerChannelRegistration();
	ExecutorSubscribableChannel channel = (reg.hasTaskExecutor() ?
			new ExecutorSubscribableChannel(brokerChannelExecutor()) : new ExecutorSubscribableChannel());
	reg.interceptors(new ImmutableMessageChannelInterceptor());
	channel.setLogger(SimpLogging.forLog(channel.getLogger()));
	channel.setInterceptors(reg.getInterceptors());
	return channel;
}
 
Example 4
Source File: AbstractMessageBrokerConfiguration.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Bean
public AbstractSubscribableChannel clientInboundChannel() {
	ExecutorSubscribableChannel channel = new ExecutorSubscribableChannel(clientInboundChannelExecutor());
	channel.setLogger(SimpLogging.forLog(channel.getLogger()));
	ChannelRegistration reg = getClientInboundChannelRegistration();
	if (reg.hasInterceptors()) {
		channel.setInterceptors(reg.getInterceptors());
	}
	return channel;
}
 
Example 5
Source File: AbstractMessageBrokerConfiguration.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Bean
public AbstractSubscribableChannel clientOutboundChannel() {
	ExecutorSubscribableChannel channel = new ExecutorSubscribableChannel(clientOutboundChannelExecutor());
	channel.setLogger(SimpLogging.forLog(channel.getLogger()));
	ChannelRegistration reg = getClientOutboundChannelRegistration();
	if (reg.hasInterceptors()) {
		channel.setInterceptors(reg.getInterceptors());
	}
	return channel;
}
 
Example 6
Source File: AbstractMessageBrokerConfiguration.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Bean
public AbstractSubscribableChannel brokerChannel() {
	ChannelRegistration reg = getBrokerRegistry().getBrokerChannelRegistration();
	ExecutorSubscribableChannel channel = (reg.hasTaskExecutor() ?
			new ExecutorSubscribableChannel(brokerChannelExecutor()) : new ExecutorSubscribableChannel());
	reg.interceptors(new ImmutableMessageChannelInterceptor());
	channel.setLogger(SimpLogging.forLog(channel.getLogger()));
	channel.setInterceptors(reg.getInterceptors());
	return channel;
}
 
Example 7
Source File: AbstractMessageBrokerConfiguration.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
@Bean
public AbstractSubscribableChannel clientInboundChannel() {
	ExecutorSubscribableChannel channel = new ExecutorSubscribableChannel(clientInboundChannelExecutor());
	ChannelRegistration reg = getClientInboundChannelRegistration();
	channel.setInterceptors(reg.getInterceptors());
	return channel;
}
 
Example 8
Source File: AbstractMessageBrokerConfiguration.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
@Bean
public AbstractSubscribableChannel clientOutboundChannel() {
	ExecutorSubscribableChannel channel = new ExecutorSubscribableChannel(clientOutboundChannelExecutor());
	ChannelRegistration reg = getClientOutboundChannelRegistration();
	channel.setInterceptors(reg.getInterceptors());
	return channel;
}
 
Example 9
Source File: AbstractMessageBrokerConfiguration.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
@Bean
public AbstractSubscribableChannel brokerChannel() {
	ChannelRegistration reg = getBrokerRegistry().getBrokerChannelRegistration();
	ExecutorSubscribableChannel channel = reg.hasTaskExecutor() ?
			new ExecutorSubscribableChannel(brokerChannelExecutor()) : new ExecutorSubscribableChannel();
	reg.setInterceptors(new ImmutableMessageChannelInterceptor());
	channel.setInterceptors(reg.getInterceptors());
	return channel;
}