Package org.springframework.data.keyvalue.redis.listener

Examples of org.springframework.data.keyvalue.redis.listener.PatternTopic


    String xTopics = element.getAttribute("topic");
    if (StringUtils.hasText(xTopics)) {
      String[] array = StringUtils.delimitedListToStringArray(xTopics, " ");

      for (String string : array) {
        topics.add(string.contains("*") ? new PatternTopic(string) : new ChannelTopic(string));
      }
    }
    ret[0] = builder.getBeanDefinition();
    ret[1] = topics;

View Full Code Here

TOP

Related Classes of org.springframework.data.keyvalue.redis.listener.PatternTopic

Copyright © 2018 www.massapicom. 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.