本文整理汇总了Java中org.springframework.integration.channel.PublishSubscribeChannel类的典型用法代码示例。如果您正苦于以下问题:Java PublishSubscribeChannel类的具体用法?Java PublishSubscribeChannel怎么用?Java PublishSubscribeChannel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
PublishSubscribeChannel类属于org.springframework.integration.channel包,在下文中一共展示了PublishSubscribeChannel类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: provisionDestination
import org.springframework.integration.channel.PublishSubscribeChannel; //导入依赖的package包/类
private SubscribableChannel provisionDestination(String name, boolean pubSub) {
String destinationName = name + ".destination";
SubscribableChannel destination = this.provisionedDestinations.get(destinationName);
if (destination == null) {
destination = pubSub ? new PublishSubscribeChannel() : new DirectChannel();
((AbstractMessageChannel)destination).setBeanName(destinationName);
((AbstractMessageChannel)destination).setComponentName(destinationName);
this.provisionedDestinations.put(destinationName, destination);
}
return destination;
}
示例2: createBinder
import org.springframework.integration.channel.PublishSubscribeChannel; //导入依赖的package包/类
private SpringIntegrationChannelBinder createBinder() {
SpringIntegrationProvisioner provisioningProvider = new SpringIntegrationProvisioner();
SpringIntegrationChannelBinder binder = new SpringIntegrationChannelBinder(provisioningProvider);
this.context.registerBean(IntegrationContextUtils.ERROR_CHANNEL_BEAN_NAME, PublishSubscribeChannel.class);
this.context.refresh();
binder.setApplicationContext(this.context);
return binder;
}
示例3: storeBookPageByPageErrorChannelHandler
import org.springframework.integration.channel.PublishSubscribeChannel; //导入依赖的package包/类
@Bean
public IntegrationFlow storeBookPageByPageErrorChannelHandler(PublishSubscribeChannel storeBookPageByPageErrorChannel,
ConnectionFactory connectionFactory,
@Qualifier("createBookResultQueue") Destination createBookResultQueue){
return integrationFlowDefinition -> integrationFlowDefinition.channel(storeBookPageByPageErrorChannel)
.handleWithAdapter(adapters -> adapters.jms(connectionFactory).destination(createBookResultQueue));
}
示例4: defaultInputChannel
import org.springframework.integration.channel.PublishSubscribeChannel; //导入依赖的package包/类
/**
* SubscribableChannel for Axon CQRS to use
* @return
*/
@Bean(name = "defaultInputChannel")
public PublishSubscribeChannel defaultInputChannel() {
PublishSubscribeChannel channel = new PublishSubscribeChannel();
List<ChannelInterceptor> list = new ArrayList<>(1);
list.add(messageSelectingInterceptor());
channel.setInterceptors(list);
// channel.setDatatypes(Object.class); // we've defined it using the PayloadTypeSelector instead and injected it as an interceptor above
return channel;
}
示例5: monitoringChannel
import org.springframework.integration.channel.PublishSubscribeChannel; //导入依赖的package包/类
/**
* This channel can be used to monitor messages from our main channel without interrupting it.
* @return
*/
@Bean(name = "monitoringChannel")
public PublishSubscribeChannel monitoringChannel() {
PublishSubscribeChannel channel = new PublishSubscribeChannel();
List<ChannelInterceptor> list = new ArrayList<>(1);
list.add(wireTap());
channel.setInterceptors(list);
return channel;
}
示例6: officeStream
import org.springframework.integration.channel.PublishSubscribeChannel; //导入依赖的package包/类
@Bean
public MessageChannel officeStream() {
return new PublishSubscribeChannel();
}
示例7: outsideStream
import org.springframework.integration.channel.PublishSubscribeChannel; //导入依赖的package包/类
@Bean
public MessageChannel outsideStream() {
return new PublishSubscribeChannel();
}
示例8: temperatureStream
import org.springframework.integration.channel.PublishSubscribeChannel; //导入依赖的package包/类
@Bean
public MessageChannel temperatureStream() {
return new PublishSubscribeChannel();
}
示例9: storeBookPageByPageErrorChannel
import org.springframework.integration.channel.PublishSubscribeChannel; //导入依赖的package包/类
@Bean
public PublishSubscribeChannel storeBookPageByPageErrorChannel(){
return new PublishSubscribeChannel();
}