Package irc4j.event

Examples of irc4j.event.ConnectEvent


        } else if (raw.get(1).equals("PRIVMSG")) {
            MessageEvent event = new MessageEvent(this, raw.get(0), raw.get(2), raw.get(3));
            listener.onMessageEvent(event);
        }
        if (connectionReady || !hasConnected) {
            listener.onConnectEvent(new ConnectEvent(this));
            this.connectionReady = false;
            this.hasConnected = true;
        }
    }
View Full Code Here

TOP

Related Classes of irc4j.event.ConnectEvent

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.