Package org.activeio

Examples of org.activeio.Packet.clear()


   
    public void testClear() {
        Packet packet = createTestPacket(100);
        packet.position(5);
        packet.limit(95);
        packet.clear();       
        assertEquals(0, packet.position());
        assertEquals(100, packet.limit());
    }

    public void testDuplicate() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.