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; /*from w w w . j a v a 2 s . c o m*/ import java.net.Socket; import java.util.List; import org.java_websocket.drafts.Draft; public interface WebSocketFactory { public WebSocket createWebSocket( WebSocketAdapter a, Draft d, Socket s ); public WebSocket createWebSocket( WebSocketAdapter a, List<Draft> drafts, Socket s ); }