}
});
}
private synchronized ExecutorChannel findOrCreateRequestReplyChannel(String name) {
ExecutorChannel channel = this.requestReplyChannels.get(name);
if (channel == null) {
channel = new ExecutorChannel(this.executor);
channel.setBeanFactory(getBeanFactory());
this.requestReplyChannels.put(name, channel);
}
return channel;
}