Examples of IrcMonitor


Examples of com.devbugger.event.IrcMonitor

    private final BotConfig botConfig = new BotConfig();
    private final IrcMonitor ircMonitor;
    private final Irc irc;

    public Connect() throws IOException {
        ircMonitor = new IrcMonitor();
        irc = new Irc();
        irc.addIrcListener(ircMonitor);
        this.ircSocket = new Socket(botConfig.getHost(), botConfig.getPort());
    }
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.