Package com.comphenix.protocol.utility

Examples of com.comphenix.protocol.utility.ByteBufferInputStream


   * <p>
   * It's safe to modify the position of the buffer.
   * @param buffer - a read-only byte source.
   */
  protected ByteBuffer skipHeader(ByteBuffer buffer) throws IOException {
    skipHeader(new DataInputStream(new ByteBufferInputStream(buffer)));
    return buffer;
  }
View Full Code Here

TOP

Related Classes of com.comphenix.protocol.utility.ByteBufferInputStream

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.