Package com.devbugger.event

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

Related Classes of com.devbugger.event.IrcMonitor

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.