Examples of RedisInboundChannelAdapter


Examples of org.springframework.integration.redis.inbound.RedisInboundChannelAdapter

      Properties properties) {
    if (logger.isInfoEnabled()) {
      logger.info("declaring pubsub for inbound: " + name);
    }
    validateConsumerProperties(name, properties, SUPPORTED_PUBSUB_CONSUMER_PROPERTIES);
    RedisInboundChannelAdapter adapter = new RedisInboundChannelAdapter(this.connectionFactory);
    adapter.setBeanFactory(this.getBeanFactory());
    adapter.setSerializer(null);
    adapter.setTopics("topic." + name);
    doRegisterConsumer(name, name, moduleInputChannel, adapter, new RedisPropertiesAccessor(properties));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.