Package org.jboss.netty.buffer

Examples of org.jboss.netty.buffer.LittleEndianHeapChannelBuffer


    cmp(cb, 0,0,0,0,0,0,0,1);
  }

  @Test
  public void testWriteLongLE() {
    ChannelBuffer cb = new LittleEndianHeapChannelBuffer(8);
    ZMTPUtils.writeLong(cb, 1);
    cmp(cb, 0,0,0,0,0,0,0,1);
  }
View Full Code Here

TOP

Related Classes of org.jboss.netty.buffer.LittleEndianHeapChannelBuffer

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.