Package com.dianping.cat.report.task.alert.sender

Examples of com.dianping.cat.report.task.alert.sender.AlertChannel


        String send = level.getSend();
        String[] sends = send.split(",");
        List<AlertChannel> channels = new ArrayList<AlertChannel>();

        for (String str : sends) {
          AlertChannel channel = AlertChannel.findByName(str);

          if (channel != null) {
            channels.add(channel);
          }
        }
View Full Code Here

TOP

Related Classes of com.dianping.cat.report.task.alert.sender.AlertChannel

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.