Back to project page android_opengles.
The source code is released under:
MIT License
If you think the Android project android_opengles listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.java_websocket.framing; // www . ja v a2 s .c om import java.nio.ByteBuffer; import org.java_websocket.exceptions.InvalidFrameException; public interface Framedata { public enum Opcode { CONTINUOUS, TEXT, BINARY, PING, PONG, CLOSING // more to come } public boolean isFin(); public boolean getTransfereMasked(); public Opcode getOpcode(); public ByteBuffer getPayloadData();// TODO the separation of the application data and the extension data is yet to be done public abstract void append( Framedata nextframe ) throws InvalidFrameException; }