Back to project page SimplePushDemoApp.
The source code is released under:
GNU General Public License
If you think the Android project SimplePushDemoApp 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; // www . j a v a 2s . 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 ); }