Package com.olliemcclellan.chatserver.packets

Examples of com.olliemcclellan.chatserver.packets.Packet


     * @param o the message (usually an IoBuffer)
     * @throws Exception thrown if an error occurs while receiving a message
     */
    @Override
    public void messageReceived(IoSession is, Object o) throws Exception {
        ChatServer.getInstance().getPacketManager().handle(new Packet((IoBuffer) o));
    }
View Full Code Here

TOP

Related Classes of com.olliemcclellan.chatserver.packets.Packet

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.