Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P002_PingReply


     * @param   channel
     * @param   latency
     */
    public static void pingReply(Channel channel, int latency)
    {
        P002_PingReply ping = new P002_PingReply();
        ping.init(channel);
        ping.setLatency(latency);
       
        channel.writeAndFlush(ping);
    }
View Full Code Here

TOP

Related Classes of gwlpr.protocol.gameserver.outbound.P002_PingReply

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.