Package ecks.Utility

Examples of ecks.Utility.Channel


                Logging.error("PROTOCOL", "Attempted to add a channel " + channel + " that already exists. " + cm.size() + " user(s) joined.");
                Logging.info("PROTOCOL", "Chan is: " + Channels.get(channel.toLowerCase()).toString());
                Channels.get(channel.toLowerCase()).clientmodes.putAll(cm);
            } else {
                // bursting... ignore this issue
                Channels.put(channel.toLowerCase(), new Channel(ts, channel, m, cm));
                Logging.verbose("PROTOCOL", "Channel " + channel + " is now being tracked. (OVERRIDDEN)");
            }
        } else {
            Channels.put(channel.toLowerCase(), new Channel(ts, channel, m, cm));
            Logging.verbose("PROTOCOL", "Channel " + channel + " is now being tracked.");
        }

        for (Client c : cm.keySet()) {
            c.chans.add(channel.toLowerCase());
View Full Code Here

TOP

Related Classes of ecks.Utility.Channel

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.