Package org.ImmortalSockets.packet

Examples of org.ImmortalSockets.packet.EndPacket


    /*
     * Send the packet indicating the end of the communication to the socket
     * on the other side.
     */
    EndPacket endPacket = new EndPacket();
    packetBuffer.add(endPacket);
    packetQueue.add(endPacket);

    // Stop the communication with the software using the socket.
    disconnectFromSoftware();
View Full Code Here

TOP

Related Classes of org.ImmortalSockets.packet.EndPacket

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.