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.
Java Source Code
package org.java_websocket;
//www.java2s.comimport java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.NotYetConnectedException;
import org.java_websocket.drafts.Draft;
import org.java_websocket.framing.Framedata;
import org.java_websocket.framing.Framedata.Opcode;
publicinterface WebSocket {
publicenum Role {
CLIENT, SERVER
}
publicenum READYSTATE {
NOT_YET_CONNECTED, CONNECTING, OPEN, CLOSING, CLOSED;
}
/**
* The default port of WebSockets, as defined in the spec. If the nullary
* constructor is used, DEFAULT_PORT will be the port the WebSocketServer
* is binded to. Note that ports under 1024 usually require root permissions.
*/publicstaticfinalint DEFAULT_PORT = 80;
publicstaticfinalint DEFAULT_WSS_PORT = 443;
/**
* sends the closing handshake.
* may be send in response to an other handshake.
*/publicvoid close( int code, String message );
publicvoid close( int code );
/** Convenience function which behaves like close(CloseFrame.NORMAL) */publicvoid close();
/**
* This will close the connection immediately without a proper close handshake.
* The code and the message therefore won't be transfered over the wire also they will be forwarded to onClose/onWebsocketClose.
**/publicabstractvoid closeConnection( int code, String message );
/**
* Send Text data to the other end.
*
* @throws IllegalArgumentException
* @throws NotYetConnectedException
*/publicabstractvoid send( String text ) throws NotYetConnectedException;
/**
* Send Binary data (plain bytes) to the other end.
*
* @throws IllegalArgumentException
* @throws NotYetConnectedException
*/publicabstractvoid send( ByteBuffer bytes ) throws IllegalArgumentException , NotYetConnectedException;
publicabstractvoid send( byte[] bytes ) throws IllegalArgumentException , NotYetConnectedException;
publicabstractvoid sendFrame( Framedata framedata );
/**
* Allows to send continuous/fragmented frames conveniently. <br>
* For more into on this frame type see http://tools.ietf.org/html/rfc6455#section-5.4<br>
*
* If the first frame you send is also the last then it is not a fragmented frame and will received via onMessage instead of onFragmented even though it was send by this method.
*
* @param op
* This is only important for the first frame in the sequence. Opcode.TEXT, Opcode.BINARY are allowed.
* @param buffer
* The buffer which contains the payload. It may have no bytes remaining.
* @param fin
* true means the current frame is the last in the sequence.
**/publicabstractvoid sendFragmentedFrame( Opcode op, ByteBuffer buffer, boolean fin );
publicabstractboolean hasBufferedData();
/**
* @returns never returns null
*/publicabstract InetSocketAddress getRemoteSocketAddress();
/**
* @returns never returns null
*/publicabstract InetSocketAddress getLocalSocketAddress();
publicabstractboolean isConnecting();
publicabstractboolean isOpen();
publicabstractboolean isClosing();
/**
* Returns true when no further frames may be submitted<br>
* This happens before the socket connection is closed.
*/publicabstractboolean isFlushAndClose();
/** Returns whether the close handshake has been completed and the socket is closed. */publicabstractboolean isClosed();
publicabstract Draft getDraft();
/**
* Retrieve the WebSocket 'readyState'.
* This represents the state of the connection.
* It returns a numerical value, as per W3C WebSockets specs.
*
* @return Returns '0 = CONNECTING', '1 = OPEN', '2 = CLOSING' or '3 = CLOSED'
*/publicabstract READYSTATE getReadyState();
/**
* Returns the HTTP Request-URI as defined by http://tools.ietf.org/html/rfc2616#section-5.1.2<br>
* If the opening handshake has not yet happened it will return null.
**/publicabstract String getResourceDescriptor();
}